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

Detect missing values in the given Pandas series

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

Syntax:

Series.isna(self)
Pandas Series isna image

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

Example:


Download the Pandas Series Notebooks from here.

Previous: Subset rows or columns of Pandas dataframe
Next: Detect existing values in Pandas series