1. 程式人生 > 其它 >numpy—np.isnan

numpy—np.isnan

技術標籤:numpyisnannumpy

np.isnan

numpy.isnan(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj])

描述

以元素方式測試NaN,並以布林陣列的形式返回結果

引數

x : array_like
輸入陣列

out : ndarray, None, or tuple of ndarray and None, optional
A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly-allocated array is returned. A tuple (possible only as a keyword argument) must have length equal to the number of outputs.

where : array_like, optional
At locations where the condition is True, the out array will be set to the ufunc result.
Elsewhere, the out array will retain its original value.

**kwargs
其他關鍵字引數

返回

y : ndarray or bool
True where x is NaN, false otherwise. This is a scalar if x is a scalar.

官方案例


在這裡插入圖片描述