pandas décrivent obtenir moyen min max

# credit to Stack Overflow user in source link
# df is your pandas DataFrame

df.describe().loc[['mean', 'min', 'max']]
wolf-like_hunter