pandas find basic statistics on column

Solutions on MaxInterview for pandas find basic statistics on column by the best coders in the world

showing results for - "pandas find basic statistics on column"
Marco
30 Mar 2018
1# Provides mean, stdev, quintiles, etc. for columnA 
2df.columnA.describe()
3# -or-
4df['columnA'].describe()