pandas.core.groupby.SeriesGroupBy.median#
- SeriesGroupBy.median(numeric_only=False)[source]#
- Compute median of groups, excluding missing values. - For multiple groupings, the result index will be a MultiIndex - Parameters
- numeric_onlybool, default False
- Include only float, int, boolean columns. - Changed in version 2.0.0: numeric_only no longer accepts - Noneand defaults to False.
 
- Returns
- Series or DataFrame
- Median of values within each group.