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
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/pandas/dataframe/dataframe-isna.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics