rbc.stdlib.statistical_functions#

Description

Array API specification for statistical functions.

https://data-apis.org/array-api/latest/API_specification/statistical_functions.html

Functions

max(x)

Calculates the maximum value of the input array x

mean(x)

Calculates the arithmetic mean of the input array x.

min(x)

Calculates the minimum value of the input array x.

prod(a)

Calculates the product of input array x elements.

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

Calculates the standard deviation of the input array x.

sum(a)

Calculates the sum of the input array x.

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

Calculates the variance of the input array x.