modin.pandas.Index.notna¶
- Index.notna() None [source]¶
Detect existing (non-missing) values.
Return a boolean same-sized object indicating if the values are not NA. Non-missing values get mapped to
True
. Characters such as empty strings''
ornumpy.inf
are not considered NA values. NA values, such as None ornumpy.NaN
, get mapped toFalse
values.- Returns:
Boolean array to indicate which entries are not NA.
- Return type:
numpy.ndarray[bool]
See also
Index.notnull
Alias of notna.
Index.isna
Inverse of notna.
notna
Top-level notna.