Aggregate Functions

df.agg(['std', 'mean']) # performs multiple agg functions

df.agg({'colName':['mean', 'max'], 'colName2':['mean', 'std']})