Statistical Functions

max(x, /, *[, axis, keepdims, out])

Calculates the maximum value of the input array x.

mean(x[, axis, keepdims])

Calculates the arithmetic mean of elements in the input array x.

min(x, /, *[, axis, keepdims, out])

Calculates the minimum value of the input array x.

prod(x, /, *[, axis, dtype, keepdims, out])

Calculates the product of elements in the input array x.

std(x[, axis, correction, keepdims])

Calculates the standard deviation of elements in the input array x.

sum(x, /, *[, axis, dtype, keepdims, out])

Calculates the sum of elements in the input array x.

var(x[, axis, correction, keepdims])

Calculates the variance of elements in the input array x.

logsumexp(x, /, *[, axis, dtype, keepdims, out])

Calculates the logarithm of the sum of exponentials of elements in the input array x.

reduce_hypot(x, /, *[, axis, dtype, ...])

Calculates the square root of the sum of squares of elements in the input array x.