Statistics
The following tables show statistical functions provided by NLCPy.
Order Statistics
Returns the maximum of an array or maximum along an axis. |
|
Returns the minimum of an array or minimum along an axis. |
|
Returns maximum of an array or maximum along an axis, ignoring any NaNs. |
|
Returns minimum of an array or minimum along an axis, ignoring any NaNs. |
|
Range of values (maximum - minimum) along an axis. |
|
Computes the q-th percentile of the data along the specified axis. |
|
Computes the q-th percentile of the data along the specified axis, while ignoring nan values. |
|
Computes the q-th quantile of the data along the specified axis. |
|
Computes the q-th quantile of the data along the specified axis, while ignoring nan values. |
Averages and Variances
Computes the weighted average along the specified axis. |
|
Computes the arithmetic mean along the specified axis. |
|
Computes the median along the specified axis. |
|
Computes the median along the specified axis, while ignoring NaNs. |
|
Computes the arithmetic mean along the specified axis, ignoring NaNs. |
|
Computes the standard deviation along the specified axis, while ignoring NaNs. |
|
Computes the variance along the specified axis, while ignoring NaNs. |
|
Computes the standard deviation along the specified axis. |
|
Computes the variance along the specified axis. |
Correlating
Cross-correlation of two 1-dimensional sequences. |
|
Returns Pearson product-moment correlation coefficients. |
|
Estimates a covariance matrix, given data and weights. |
Histograms
Computes the histogram of a set of data. |
|
Computes the bi-dimensional histogram of two data samples. |
|
Computes the multidimensional histogram of some data. |
|
Counts number of occurrences of each value in array of non-negative ints. |
|
Function to calculate only the edges of the bins used by |
|
Return is the indices of the bins to which each value in input array belongs. |