bundles / numpy 2.4.3 / numpy / nanmean
_ArrayFunctionDispatcher
numpy:nanmean
Signature
def nanmean ( a , axis = None , dtype = None , out = None , keepdims = <no value> , * , where = <no value> ) Summary
Compute the arithmetic mean along the specified axis, ignoring NaNs.
Extended Summary
Returns the average of the array elements. The average is taken over the flattened array by default, otherwise over the specified axis. float64 intermediate and return values are used for integer inputs.
For all-NaN slices, NaN is returned and a RuntimeWarning is raised.
Parameters
a: array_likeArray containing numbers whose mean is desired. If
ais not an array, a conversion is attempted.axis: {int, tuple of int, None}, optionalAxis or axes along which the means are computed. The default is to compute the mean of the flattened array.
dtype: data-type, optionalType to use in computing the mean. For integer inputs, the default is
float64; for inexact inputs, it is the same as the input dtype.out: ndarray, optionalAlternate output array in which to place the result. The default is
None; if provided, it must have the same shape as the expected output, but the type will be cast if necessary. Seeufuncs-output-typefor more details.keepdims: bool, optionalIf this is set to True, the axes which are reduced are left in the result as dimensions with size one. With this option, the result will broadcast correctly against the original
a.If the value is anything but the default, then
keepdimswill be passed through to the mean orsummethods of sub-classes ofndarray. If the sub-classes methods does not implementkeepdimsany exceptions will be raised.where: array_like of bool, optionalElements to include in the mean. See
~numpy.ufunc.reducefor details.
Returns
m: ndarray, see dtype parameter aboveIf
out=None, returns a new array containing the mean values, otherwise a reference to the output array is returned. Nan is returned for slices that contain only NaNs.
Notes
The arithmetic mean is the sum of the non-NaN elements along the axis divided by the number of non-NaN elements.
Note that for floating-point input, the mean is computed using the same precision the input has. Depending on the input data, this can cause the results to be inaccurate, especially for float32. Specifying a higher-precision accumulator using the dtype keyword can alleviate this issue.
Examples
import numpy as np a = np.array([[1, np.nan], [3, 4]])✓
np.nanmean(a) np.nanmean(a, axis=0) np.nanmean(a, axis=1)✗
See also
- average
Weighted average
- mean
Arithmetic mean taken while not ignoring NaNs
- nanvar
- var
Aliases
-
numpy.nanmean