antitheft159 commited on
Commit
393c7c7
·
verified ·
1 Parent(s): 00f3a59

Upload _1448.py

Browse files
Files changed (1) hide show
  1. _1448.py +41 -0
_1448.py ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ """.1448
3
+
4
+ Automatically generated by Colab.
5
+
6
+ Original file is located at
7
+ https://colab.research.google.com/drive/1GIIClHvqMtYFqLpA0aV6XldITsz-gvPx
8
+ """
9
+
10
+ import pandas as pd
11
+ import numpy as np
12
+ import matplotlib.pyplot as plt
13
+ import plotly.express as px
14
+ import seaborn as sns
15
+ from wordcloud import WordCloud, STOPWORDS
16
+ from collections import Counter
17
+
18
+ import warnings
19
+ warnings.filterwarnings('ignore')
20
+
21
+ df = pd.read_csv('/content/1. users_data.csv')
22
+
23
+ df.head()
24
+
25
+ df.tail()
26
+
27
+ df.sample()
28
+
29
+ df.describe().T.plot(kind='bar')
30
+
31
+ df.describe(include = 'all').T
32
+
33
+ df.columns.to_list()
34
+
35
+ df.duplicated().sum()
36
+
37
+ df.isnull().sum()
38
+
39
+ for col in df:
40
+ sns.histplot(x=col, data=df,kde=True)
41
+ plt.show()