cudf.Index.notna#
- Index.notna()#
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
. NA values, such as None ornumpy.NaN
, get mapped toFalse
values.- Returns
- numpy.ndarray[bool]
A boolean array to indicate which entries are not NA.