dpnp.nanvar
- dpnp.nanvar(x1, axis=None, dtype=None, out=None, ddof=0, keepdims=False)[source]
Compute the variance along the specified axis, while ignoring NaNs.
For full documentation refer to
numpy.nanvar
.Limitations
Input array is supported as
dpnp.ndarray
. Prametersaxis
is supported only with default valueNone
. Prametersdtype
is supported only with default valueNone
. Prametersout
is supported only with default valueNone
. Prameterskeepdims
is supported only with default valuenumpy._NoValue
. Otherwise the function will be executed sequentially on CPU.