Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Pandas DataFrame: notna() function

DataFrame - notna() function

The notna() function is used to 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..

Syntax:

DataFrame.notna(self)

Returns: DataFrame - Mask of bool values for each element in DataFrame that indicates whether an element is not an NA value.

Example:


Download the Pandas DataFrame Notebooks from here.

Previous: DataFrame - isna() function
Next: DataFrame - head() function