xorbits.pandas.groupby.SeriesGroupBy.sem#
- SeriesGroupBy.sem(**kw)#
Compute standard error of the mean of groups, excluding missing values.
For multiple groupings, the result index will be a MultiIndex.
- Parameters
ddof (int, default 1 (Not supported yet)) – Degrees of freedom.
numeric_only (bool, default True (Not supported yet)) –
Include only float, int or boolean data.
New in version 1.5.0.
- Returns
Standard error of the mean of values within each group.
- Return type
See also
Series.groupbyApply a function groupby to a Series.
DataFrame.groupbyApply a function groupby to each row or column of a DataFrame.
This docstring was copied from pandas.core.groupby.generic.SeriesGroupBy.