Statistics¶
Order statistics¶
|
Range of values (maximum - minimum) along an axis. |
|
Compute the q-th percentile of the data along the specified axis. |
|
Compute the qth percentile of the data along the specified axis, while ignoring nan values. |
|
Compute the q-th quantile of the data along the specified axis. |
|
Compute the qth quantile of the data along the specified axis, while ignoring nan values. |
Averages and variances¶
|
Compute the median along the specified axis. |
|
Compute the weighted average along the specified axis. |
|
Compute the arithmetic mean along the specified axis. |
|
Compute the standard deviation along the specified axis. |
|
Compute the variance along the specified axis. |
|
Compute the median along the specified axis, while ignoring NaNs. |
|
Compute the arithmetic mean along the specified axis, ignoring NaNs. |
|
Compute the standard deviation along the specified axis, while ignoring NaNs. |
|
Compute the variance along the specified axis, while ignoring NaNs. |
Correlating¶
|
Return Pearson product-moment correlation coefficients. |
|
Cross-correlation of two 1-dimensional sequences. |
|
Estimate a covariance matrix, given data and weights. |
Histograms¶
|
Compute the histogram of a dataset. |
|
Compute the bi-dimensional histogram of two data samples. |
|
Compute the multidimensional histogram of some data. |
|
Count number of occurrences of each value in array of non-negative ints. |
|
Function to calculate only the edges of the bins used by the |
|
Return the indices of the bins to which each value in input array belongs. |