Answers for "pandas describe kurtosis skewness"

0

pandas describe kurtosis skewness

# credit to Stack Overflow user in source link
# df: pandas dataframe

from scipy.stats import describe
describe(df, axis=0) # (min, max), mean, variance, skewness, kurtosis
Posted by: Guest on May-29-2021

Python Answers by Framework

Browse Popular Code Answers by Language