-
Notifications
You must be signed in to change notification settings - Fork 0
/
1
43 lines (36 loc) · 1.63 KB
/
1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# This Python 3 environment comes with many helpful analytics libraries installed
# It is defined by the kaggle/python Docker image: https://github.com/kaggle/docker-python
# For example, here's several helpful packages to load
import numpy as np # linear algebra
import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)
# Input data files are available in the read-only "../input/" directory
# For example, running this (by clicking run or pressing Shift+Enter) will list all files under the input directory
import os
for dirname, _, filenames in os.walk('/kaggle/input'):
for filename in filenames:
print(os.path.join(dirname, filename))
# You can write up to 20GB to the current directory (/kaggle/working/) that gets preserved as output when you create a version using "Save & Run All"
# You can also write temporary files to /kaggle/temp/, but they won't be saved outside of the current session
/kaggle/input/unemployment-in-india/Unemployment_Rate_upto_11_2020.csv
/kaggle/input/unemployment-in-india/Unemployment in India.csv
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
import plotly.express as px
import folium
from folium import Circle
from geopy import Nominatim
from sklearn.preprocessing import MinMaxScaler
from IPython.display import display
df =pd.read_csv("/kaggle/input/unemployment-in-india/Unemployment in India.csv")
df.head()
df =pd.read_csv("/kaggle/input/unemployment-in-india/Unemployment in India.csv")
df.sample(5)
df.columns
df.isnull().sum()
sns.pairplot(df)
df.Region.unique()
import missingno as msno
msno.matrix(df)
df['Region'].value_counts().plot.pie()