pyinterp.DescriptiveStatistics.array#
- DescriptiveStatistics.array() NDArrayStructured[source]#
Get the statistical variables as a structured numpy array.
Return all calculated statistical variables in a numpy structured table with the following fields:
count: Number of samples.kurtosis: Kurtosis of samples.max: Maximum of samples.mean: Mean of samples.min: Minimum of samples.skewness: Skewness of samples.sum_of_weights: Sum of weights.sum: Sum of samples.var: Variance of samples (ddof is equal to zero).
- Returns:
The statistical variables in a numpy structured table.