pyinterp.DescriptiveStatistics.std¶
- DescriptiveStatistics.std(ddof: int = 0) ndarray [source]¶
Returns the standard deviation of samples.
- Parameters:
ddof – Means Delta Degrees of Freedom. The divisor used in calculations is N - ddof, where N represents the number of elements. By default ddof is zero.
- Returns:
The standard deviation of samples.