pandas describe get mean min max code example
Example: pandas describe get mean min max
# credit to Stack Overflow user in source link
# df is your pandas DataFrame
df.describe().loc[['mean', 'min', 'max']]
# credit to Stack Overflow user in source link
# df is your pandas DataFrame
df.describe().loc[['mean', 'min', 'max']]