modin.pandas.Index.notna¶
- Index.notna() None[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.20.0/src/snowflake/snowpark/modin/plugin/extensions/index.py#L1703-L1725)¶
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.infare not considered NA values. NA values, such as None ornumpy.NaN, get mapped toFalsevalues.- Returns:
Boolean array to indicate which entries are not NA.
- Return type:
numpy.ndarray[bool]
See also
Index.notnullAlias of notna.
Index.isnaInverse of notna.
notnaTop-level notna.