amin(a[, axis, out, keepdims, initial, where])
amin
Return the minimum of an array or minimum along an axis.
amax(a[, axis, out, keepdims, initial, where])
amax
Return the maximum of an array or maximum along an axis.
nanmin(a[, axis, out, keepdims])
nanmin
Return minimum of an array or minimum along an axis, ignoring any NaNs.
nanmax(a[, axis, out, keepdims])
nanmax
Return the maximum of an array or maximum along an axis, ignoring any NaNs.
ptp(a[, axis, out, keepdims])
ptp
Range of values (maximum - minimum) along an axis.
percentile(a, q[, axis, out, …])
percentile
Compute the q-th percentile of the data along the specified axis.
nanpercentile(a, q[, axis, out, …])
nanpercentile
Compute the qth percentile of the data along the specified axis, while ignoring nan values.
quantile(a, q[, axis, out, overwrite_input, …])
quantile
Compute the q-th quantile of the data along the specified axis.
nanquantile(a, q[, axis, out, …])
nanquantile
Compute the qth quantile of the data along the specified axis, while ignoring nan values.
median(a[, axis, out, overwrite_input, keepdims])
median
Compute the median along the specified axis.
average(a[, axis, weights, returned])
average
Compute the weighted average along the specified axis.
mean(a[, axis, dtype, out, keepdims, where])
mean
Compute the arithmetic mean along the specified axis.
std(a[, axis, dtype, out, ddof, keepdims, where])
std
Compute the standard deviation along the specified axis.
var(a[, axis, dtype, out, ddof, keepdims, where])
var
Compute the variance along the specified axis.
nanmedian(a[, axis, out, overwrite_input, …])
nanmedian
Compute the median along the specified axis, while ignoring NaNs.
nanmean(a[, axis, dtype, out, keepdims])
nanmean
Compute the arithmetic mean along the specified axis, ignoring NaNs.
nanstd(a[, axis, dtype, out, ddof, keepdims])
nanstd
Compute the standard deviation along the specified axis, while ignoring NaNs.
nanvar(a[, axis, dtype, out, ddof, keepdims])
nanvar
Compute the variance along the specified axis, while ignoring NaNs.
corrcoef(x[, y, rowvar, bias, ddof, dtype])
corrcoef
Return Pearson product-moment correlation coefficients.
correlate(a, v[, mode])
correlate
Cross-correlation of two 1-dimensional sequences.
cov(m[, y, rowvar, bias, ddof, fweights, …])
cov
Estimate a covariance matrix, given data and weights.
histogram(a[, bins, range, normed, weights, …])
histogram
Compute the histogram of a set of data.
histogram2d(x, y[, bins, range, normed, …])
histogram2d
Compute the bi-dimensional histogram of two data samples.
histogramdd(sample[, bins, range, normed, …])
histogramdd
Compute the multidimensional histogram of some data.
bincount(x[, weights, minlength])
bincount
Count number of occurrences of each value in array of non-negative ints.
histogram_bin_edges(a[, bins, range, weights])
histogram_bin_edges
Function to calculate only the edges of the bins used by the histogram function.
digitize(x, bins[, right])
digitize
Return the indices of the bins to which each value in input array belongs.