Learn practical skills, build real-world projects, and advance your career
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt, seaborn as sns
%matplotlib inline
df=pd.read_csv('playstore-analysis.csv')
df.head()
df.tail()
df.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 9366 entries, 0 to 10840 Data columns (total 13 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 App 9366 non-null object 1 Category 9366 non-null object 2 Rating 9366 non-null float64 3 Reviews 9366 non-null object 4 Size 9366 non-null float64 5 Installs 9366 non-null int64 6 Type 9366 non-null object 7 Price 9366 non-null float64 8 Content Rating 9366 non-null object 9 Genres 9366 non-null object 10 Last Updated 9366 non-null object 11 Current Ver 9366 non-null object 12 Android Ver 9366 non-null object dtypes: float64(3), int64(1), object(9) memory usage: 1.3+ MB