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

Project - Data Science Jobs Statistics In India

Introduction

This project is the study and evaluation regarding data science jobs statistics in India. Here I've used dataset "Data Science Jobs in India by Glassdoor in Covid19" by Usama Khan from Kaggle. In this project i've used multiple libraries like pandas, numpy, matplotlib, seaborn and i've used multiple functions like barplot, scatterplot, heatmap, mathematical functions like mean, average etc. This is last project to submit in the course Data Analysis with Python: Zero to Pandas, and i learned python basic functions, arithmetic, other mathematical functions,loops, data types, numpy operations, numpy computing, analysing tabular data, visualization using matplotlib, seaborn. I really enjoyed learning from this course. Thanks Jovian & Aakash

Let's begin by downloading the data, and listing the files within the dataset.

import opendatasets as od
dataset_url = 'https://www.kaggle.com/usamakhan8199/current-data-science-jobs-in-india-by-glassdoor'
od.download('https://www.kaggle.com/usamakhan8199/current-data-science-jobs-in-india-by-glassdoor')

Let's verify that the dataset was downloaded into the directory datascience_job_dataset, and retrieve the list of files in the dataset.

import os