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: isna() function

DataFrame - isna() function

The isna() function is used to detect missing values.

Return a boolean same-sized object indicating if the values are NA. NA values, such as None or numpy.NaN, gets mapped to True values. Everything else gets mapped to False values. Characters such as empty strings '' or numpy.inf are not considered NA values (unless you set pandas.options.mode.use_inf_as_na = True).

Syntax:

DataFrame.isna(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 - copy() function
Next: DataFrame - notna() function