panda menjelaskan mendapatkan mean max

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

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