Array API specification for statistical functions.
A conforming implementation of the array API standard must provide and support the following functions adhering to the following conventions.
- Positional parameters must be positional-only parameters. Positional-only parameters have no externally-usable name. When a function accepting positional-only parameters is called, positional arguments are mapped to these parameters based solely on their order.
- Optional parameters must be keyword-only arguments.
- Broadcasting semantics must follow the semantics defined in {ref}
broadcasting
. - Unless stated otherwise, functions must support the data types defined in {ref}
data-types
. - Unless stated otherwise, functions must adhere to the type promotion rules defined in {ref}
type-promotion
. - Unless stated otherwise, floating-point operations must adhere to IEEE 754-2019.
(function-max)=
Calculates the maximum value of the input array x
.
-
x: <array>
- input array. Should have a numeric data type.
-
axis: Optional[ Union[ int, Tuple[ int, ... ] ] ]
- axis or axes along which maximum values must be computed. By default, the maximum value must be computed over the entire array. If a tuple of integers, maximum values must be computed over multiple axes. Default:
None
.
- axis or axes along which maximum values must be computed. By default, the maximum value must be computed over the entire array. If a tuple of integers, maximum values must be computed over multiple axes. Default:
-
keepdims: bool
- If
True
, the reduced axes (dimensions) must be included in the result as singleton dimensions, and, accordingly, the result must be compatible with the input array (see {ref}broadcasting
). Otherwise, ifFalse
, the reduced axes (dimensions) must not be included in the result. Default:False
.
- If
-
out: <array>
- if the maximum value was computed over the entire array, a zero-dimensional array containing the maximum value; otherwise, a non-zero-dimensional array containing the maximum values. The returned array must have the same data type as
x
.
- if the maximum value was computed over the entire array, a zero-dimensional array containing the maximum value; otherwise, a non-zero-dimensional array containing the maximum values. The returned array must have the same data type as
(function-mean)=
Calculates the arithmetic mean of the input array x
.
-
x: <array>
- input array. Should have a floating-point data type.
-
axis: Optional[ Union[ int, Tuple[ int, ... ] ] ]
- axis or axes along which arithmetic means must be computed. By default, the mean must be computed over the entire array. If a tuple of integers, arithmetic means must be computed over multiple axes. Default:
None
.
- axis or axes along which arithmetic means must be computed. By default, the mean must be computed over the entire array. If a tuple of integers, arithmetic means must be computed over multiple axes. Default:
-
keepdims: bool
- If
True
, the reduced axes (dimensions) must be included in the result as singleton dimensions, and, accordingly, the result must be compatible with the input array (see {ref}broadcasting
). Otherwise, ifFalse
, the reduced axes (dimensions) must not be included in the result. Default:False
.
- If
-
out: <array>
- if the arithmetic mean was computed over the entire array, a zero-dimensional array containing the arithmetic mean; otherwise, a non-zero-dimensional array containing the arithmetic means. The returned array must have be the default floating-point data type.
(function-min)=
Calculates the minimum value of the input array x
.
-
x: <array>
- input array. Should have a numeric data type.
-
axis: Optional[ Union[ int, Tuple[ int, ... ] ] ]
- axis or axes along which minimum values must be computed. By default, the minimum value must be computed over the entire array. If a tuple of integers, minimum values must be computed over multiple axes. Default:
None
.
- axis or axes along which minimum values must be computed. By default, the minimum value must be computed over the entire array. If a tuple of integers, minimum values must be computed over multiple axes. Default:
-
keepdims: bool
- If
True
, the reduced axes (dimensions) must be included in the result as singleton dimensions, and, accordingly, the result must be compatible with the input array (see {ref}broadcasting
). Otherwise, ifFalse
, the reduced axes (dimensions) must not be included in the result. Default:False
.
- If
-
out: <array>
- if the minimum value was computed over the entire array, a zero-dimensional array containing the minimum value; otherwise, a non-zero-dimensional array containing the minimum values. The returned array must have the same data type as
x
.
- if the minimum value was computed over the entire array, a zero-dimensional array containing the minimum value; otherwise, a non-zero-dimensional array containing the minimum values. The returned array must have the same data type as
(function-prod)=
Calculates the product of input array x
elements.
-
x: <array>
- input array. Should have a numeric data type.
-
axis: Optional[ Union[ int, Tuple[ int, ... ] ] ]
- axis or axes along which products must be computed. By default, the product must be computed over the entire array. If a tuple of integers, products must be computed over multiple axes. Default:
None
.
- axis or axes along which products must be computed. By default, the product must be computed over the entire array. If a tuple of integers, products must be computed over multiple axes. Default:
-
keepdims: bool
- If
True
, the reduced axes (dimensions) must be included in the result as singleton dimensions, and, accordingly, the result must be compatible with the input array (see {ref}broadcasting
). Otherwise, ifFalse
, the reduced axes (dimensions) must not be included in the result. Default:False
.
- If
-
out: <array>
- if the product was computed over the entire array, a zero-dimensional array containing the product; otherwise, a non-zero-dimensional array containing the products. The returned array must have the same data type as
x
.
- if the product was computed over the entire array, a zero-dimensional array containing the product; otherwise, a non-zero-dimensional array containing the products. The returned array must have the same data type as
(function-std)=
Calculates the standard deviation of the input array x
.
-
x: <array>
- input array. Should have a floating-point data type.
-
axis: Optional[ Union[ int, Tuple[ int, ... ] ] ]
- axis or axes along which standard deviations must be computed. By default, the standard deviation must be computed over the entire array. If a tuple of integers, standard deviations must be computed over multiple axes. Default:
None
.
- axis or axes along which standard deviations must be computed. By default, the standard deviation must be computed over the entire array. If a tuple of integers, standard deviations must be computed over multiple axes. Default:
-
correction: Union[ int, float ]
- degrees of freedom adjustment. Setting this parameter to a value other than
0
has the effect of adjusting the divisor during the calculation of the standard deviation according toN-c
whereN
corresponds to the total number of elements over which the standard deviation is computed andc
corresponds to the provided degrees of freedom adjustment. When computing the standard deviation of a population, setting this parameter to0
is the standard choice (i.e., the provided array contains data constituting an entire population). When computing the corrected sample standard deviation, setting this parameter to1
is the standard choice (i.e., the provided array contains data sampled from a larger population; this is commonly referred to as Bessel's correction). Default:0
.
- degrees of freedom adjustment. Setting this parameter to a value other than
-
keepdims: bool
- If
True
, the reduced axes (dimensions) must be included in the result as singleton dimensions, and, accordingly, the result must be compatible with the input array (see {ref}broadcasting
). Otherwise, ifFalse
, the reduced axes (dimensions) must not be included in the result. Default:False
.
- If
-
out: <array>
- if the standard deviation was computed over the entire array, a zero-dimensional array containing the standard deviation; otherwise, a non-zero-dimensional array containing the standard deviations. The returned array must have the default floating-point data type.
(function-sum)=
Calculates the sum of the input array x
.
-
x: <array>
- input array. Should have a numeric data type.
-
axis: Optional[ Union[ int, Tuple[ int, ... ] ] ]
- axis or axes along which sums must be computed. By default, the sum must be computed over the entire array. If a tuple of integers, sums must be computed over multiple axes. Default:
None
.
- axis or axes along which sums must be computed. By default, the sum must be computed over the entire array. If a tuple of integers, sums must be computed over multiple axes. Default:
-
keepdims: bool
- If
True
, the reduced axes (dimensions) must be included in the result as singleton dimensions, and, accordingly, the result must be compatible with the input array (see {ref}broadcasting
). Otherwise, ifFalse
, the reduced axes (dimensions) must not be included in the result. Default:False
.
- If
-
out: <array>
- if the sum was computed over the entire array, a zero-dimensional array containing the sum; otherwise, an array containing the sums. The returned array must have the same data type as
x
.
- if the sum was computed over the entire array, a zero-dimensional array containing the sum; otherwise, an array containing the sums. The returned array must have the same data type as
(function-var)=
Calculates the variance of the input array x
.
-
x: <array>
- input array. Should have a floating-point data type.
-
axis: Optional[ Union[ int, Tuple[ int, ... ] ] ]
- axis or axes along which variances must be computed. By default, the variance must be computed over the entire array. If a tuple of integers, variances must be computed over multiple axes. Default:
None
.
- axis or axes along which variances must be computed. By default, the variance must be computed over the entire array. If a tuple of integers, variances must be computed over multiple axes. Default:
-
correction: Union[ int, float ]
- degrees of freedom adjustment. Setting this parameter to a value other than
0
has the effect of adjusting the divisor during the calculation of the variance according toN-c
whereN
corresponds to the total number of elements over which the variance is computed andc
corresponds to the provided degrees of freedom adjustment. When computing the variance of a population, setting this parameter to0
is the standard choice (i.e., the provided array contains data constituting an entire population). When computing the unbiased sample variance, setting this parameter to1
is the standard choice (i.e., the provided array contains data sampled from a larger population; this is commonly referred to as Bessel's correction). Default:0
.
- degrees of freedom adjustment. Setting this parameter to a value other than
-
keepdims: bool
- If
True
, the reduced axes (dimensions) must be included in the result as singleton dimensions, and, accordingly, the result must be compatible with the input array (see {ref}broadcasting
). Otherwise, ifFalse
, the reduced axes (dimensions) must not be included in the result. Default:False
.
- If
-
out: <array>
- if the variance was computed over the entire array, a zero-dimensional array containing the variance; otherwise, a non-zero-dimensional array containing the variances. The returned array must have the default floating-point data type.