df
Summary statistics for the numerical columns (transposed for more readable output).
df.describe(include=[np.number]).T
Summary stats for object and categorical columns (transposed for more readable output).
df.describe(include=[np.object, pd.Categorical]).T
Count of non null values.
df.count()
Count number of rows with each unique value of variable.
df['bar'].value_counts()
Number of distinct values in a column.
df['bar'].nunique()
The minimum value in each column.
df.min()