@overload
atoti.agg.std(
operand: LevelOrVariableColumnConvertible,
/,
*,
mode: Literal[‘sample’, ‘population’] ='sample',
) → MeasureDefinition
@overloadReturn a measure equal to the standard deviation of the passed operand across the specified scope.
atoti.agg.std(
operand: VariableMeasureConvertible,
/,
*,
mode: Literal[‘sample’, ‘population’] ='sample',
scope: CumulativeScope | SiblingsScope | OriginScope,
) → MeasureDefinition
Parameters
operand
The operand to get the standard deviation of.mode
One of the supported modes:- The
samplestandard deviation, similar to Excel’sSTDEV.S, is wheremis the sample mean andnthe size of the sample. Use this mode if the data represents a sample of the population. - The
populationstandard deviation, similar to Excel’sSTDEV.Pis wheremis the mean of theXielements andnthe size of the population. Use this mode if the data represents the entire population.
scope
Theaggregation scope.