While creating a DataFrame or importing a CSV file, there could be some NaN values in the cells. NaN values mean "Not a Number" which generally means that there are some missing values in the cell. To deal with this type of data, you can either remove the particular row (if the number of missing values is low) or you can handle these values. For handling these values, you might need to count the number of NaN values.
To count the number of NaN values, you can use the sum() method over the isnull() method, below is the syntax:
Syntax:
data.isnull().sum().sum()
pandas.isnull Method
The isnull() method return a True or False value where True means that there is some missing data and False means that the data is not null. True and False are treated as 1 and 0 respectively.
pandas.isnull().sum().sum() Method
The sum() method returns the count of True values generated from the isnull() method.
Here, you have to use sum() method twice in order to count the NaN values in the entire dataset. First, it will count the NaN values in each column and second time it will add all the NaN values from all the columns.
To work with Python Pandas, we need to import the pandas library. Below is the syntax,
import pandas as pd
Example:
Output:
need an explanation for this answer? contact us directly to get an explanation for this answer