atoti.array.std()#
- atoti.array.std(measure, /, *, mode='sample')#
Return a measure equal to the standard deviation of the elements of the passed array measure.
- Parameters:
measure (VariableMeasureConvertible) – The measure to get the standard deviation of.
mode (Literal['sample', 'population']) –
One of the supported modes:
The
samplestandard deviation, similar to Excel’sSTDEV.S, is \(\sqrt{\frac{\sum_{i=1}^{n} (X_i - m)^{2}}{n - 1}}\) 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 \(\sqrt{\frac{\sum_{i=1}^{n}(X_i - m)^{2}}{n}}\) wheremis the mean of theXielements andnthe size of the population. Use this mode if the data represents the entire population.
- Return type:
MeasureOperation