dask 2021.10.0

NotesParametersReturnsBackRef
nanmean(a, axis=None, dtype=None, keepdims=False, split_every=None, out=None)

This docstring was copied from numpy.nanmean.

Some inconsistencies with the Dask version may exist.

Returns the average of the array elements. The average is taken over the flattened array by default, otherwise over the specified axis. :None:None:`float64` intermediate and return values are used for integer inputs.

For all-NaN slices, NaN is returned and a :None:None:`RuntimeWarning` is raised.

versionadded

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 :None:None:`float32`. Specifying a higher-precision accumulator using the :None:None:`dtype` keyword can alleviate this issue.

Parameters

a : array_like

Array containing numbers whose mean is desired. If a is not an array, a conversion is attempted.

axis : {int, tuple of int, None}, optional

Axis or axes along which the means are computed. The default is to compute the mean of the flattened array.

dtype : data-type, optional

Type to use in computing the mean. For integer inputs, the default is :None:None:`float64`; for inexact inputs, it is the same as the input dtype.

out : ndarray, optional

Alternate 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. See ufuncs-output-type for more details.

keepdims : bool, optional

If 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 keepdims will be passed through to the mean or sum methods of sub-classes of :None:None:`ndarray`. If the sub-classes methods does not implement keepdims any exceptions will be raised.

where : array_like of bool, optional (Not supported in Dask)

Elements to include in the mean. See :None:None:`~numpy.ufunc.reduce` for details.

versionadded

Returns

m : ndarray, see dtype parameter above

If :None:None:`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.

Compute the arithmetic mean along the specified axis, ignoring NaNs.

See Also

average

Weighted average

mean

Arithmetic mean taken while not ignoring NaNs

nanvar
var

Examples

This example is valid syntax, but we were not able to check execution
>>> a = np.array([[1, np.nan], [3, 4]])  # doctest: +SKIP
... np.nanmean(a) # doctest: +SKIP 2.6666666666666665
This example is valid syntax, but we were not able to check execution
>>> np.nanmean(a, axis=0)  # doctest: +SKIP
array([2.,  4.])
This example is valid syntax, but we were not able to check execution
>>> np.nanmean(a, axis=1)  # doctest: +SKIP
array([1.,  3.5]) # may vary
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

dask.array.reductions.var dask.array.reductions.mean dask.array.reductions.nanvar dask.array.reductions.std dask.array.reductions.nanstd

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /dask/array/reductions.py#654
type: <class 'function'>
Commit: