Skip to main content

median()

df.groupby(column_name).median()

Returns a DataFrame, with rows as groups, and each column as the median of the column values within each group.

Note:
Only for columns of type int or float, all other columns are automatically dropped.

pets
IndexIDSpeciesColorWeightAgeIs_CatOwner_Comment
0dog_001dogblack405False There are no bad dogs, only bad owners.
1cat_001catgolden1.50.2TrueMy best birthday present ever!!!
2cat_002catblack159True****All you need is love and a cat.****
3dog_002dogwhite802FalseLove is a wet nose and a wagging tail.
4dog_003dogblack250.5FalseBe the person your dog thinks you are.
5ham_001hamsterblack13FalseNo, thank you!
6ham_002hamstergolden0.250.2FalseNo, thank you!
7cat_003catblack100TrueNo, thank you!
pets.get(['Weight', 'Age', 'Species', 'Is_Cat']).groupby('Species').median()
IndexWeightAgeIs_Cat
cat100.21
dog4020
hamster0.6251.60

Problems or suggestions about this page? Fill out our feedback form.