osakb
5/21/2018 - 4:49 AM

basic values of DataFrame

df.info() # show basic properties
df.shape # clumns and rows
df.count() # num of data in each column
df.dtypes # data_types of each column
len(df) - df.count() # num of lost data
df.describe() # calc stats of numbers(dtype)
df.describe(include='all') # calc stats of all data