grouped.grouped_std

grouped.grouped_std(ind: Array, v: Array, filtered: bool = True, chunks: int | tuple[int, ...] | None = None, std_df: Literal[0, 1] = 1, verbose: bool = False) ndarray[tuple[int], float64]

Compute the standard deviation at each index.

Parameters:
indarray-like

index labels

varray-like

data

filteredbool, optional

Filter the output in a pandas dataframe, which is the default. If False, this function returns the raw output, where the index of the value corresponds to the index labels.

chunksint or tuple of ints, optional

Optional chunking of the data, which can be run in parallel in a joblib context

verbosebool, optional

Print timing

:returns: **stds – The standard deviation at each index.**
:rtype: np.ndarray