pyspark.pandas.groupby.GroupBy.std

GroupBy.std(ddof: int = 1) → FrameLike[source]

Compute standard deviation of groups, excluding missing values.

Parameters
ddofint, default 1

Delta Degrees of Freedom. The divisor used in calculations is N - ddof, where N represents the number of elements.