Learn practical skills, build real-world projects, and advance your career

Developers Survey Analysis - 2020

For my project work, I chose Developers Survey results 2020 as my Dataset for the assignment to show my Python skills using pandas, numpy, matplotlib, seaborn modules.

I have downloaded Developers Survey 2020 Dataset from the website https://insights.stackoverflow.com/survey/2020.

The course sgtructure Zero2Pandas is a real challenge for the beginners like me, I Thank Mr. Aakash for giving us the oppertunity to learn and master the skills in Pandas. I appreciate Mr Aakash's dedication in providing the course instructions for us to learn Zero2pandas.

project_name = "Developers Survey Analysis - 2020"
#Required Modules for the project 
import os
import pandas as pd
import numpy as np
from collections import Counter
from matplotlib import pyplot as plt
import seaborn as sns
import matplotlib
%matplotlib inline
!pip install jovian --upgrade -q
import jovian