cudf.Index.isna#

Index.isna()#

Detect missing values.

Return a boolean same-sized object indicating if the values are NA. NA values, such as None, numpy.NAN or cudf.NA, get mapped to True values. Everything else get mapped to False values.

Returns:
numpy.ndarray[bool]

A boolean array to indicate which entries are NA.