Statistics

Order statistics

cupy.amin Returns the minimum of an array or the minimum along an axis.
cupy.amax Returns the maximum of an array or the maximum along an axis.
cupy.nanmin Returns the minimum of an array along an axis ignoring NaN.
cupy.nanmax Returns the maximum of an array along an axis ignoring NaN.

Means and variances

cupy.mean Returns the arithmetic mean along an axis.
cupy.var Returns the variance along an axis.
cupy.std Returns the standard deviation along an axis.

Histograms

cupy.bincount Count number of occurrences of each value in array of non-negative ints.