GroupBy.
std
Compute standard deviation of groups, excluding missing values.
New in version 3.3.0.
Delta Degrees of Freedom. The divisor used in calculations is N - ddof, where N represents the number of elements.
Changed in version 3.4.0: Supported including arbitary integers.
See also
pyspark.pandas.Series.groupby
pyspark.pandas.DataFrame.groupby
Examples
>>> df = ps.DataFrame({"A": [1, 2, 1, 2], "B": [True, False, False, True], ... "C": [3, 4, 3, 4], "D": ["a", "b", "b", "a"]})
>>> df.groupby("A").std() B C A 1 0.707107 0.0 2 0.707107 0.0