xorbits.pandas.groupby.DataFrameGroupBy.sem#

DataFrameGroupBy.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 False (Not supported yet)) –

    Include only float, int or boolean data.

    New in version 1.5.0(pandas).

    Changed in version 2.0.0(pandas): numeric_only now defaults to False.

Returns

Standard error of the mean of values within each group.

Return type

Series or DataFrame

This docstring was copied from pandas.core.groupby.generic.DataFrameGroupBy.