pyinterp.DescriptiveStatistics.var¶ DescriptiveStatistics.var(ddof: int = 0) → ndarray[source]¶ Returns the variance 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 variance of samples.