df.isnull().count()
Output - 740 (Displaying the opposite)
df.isnull().sum()
Output - 8 (Displaying the null values)
PS : 'df' is the name of my dataset
df.isnull().count()
Output - 740 (Displaying the opposite)
df.isnull().sum()
Output - 8 (Displaying the null values)
PS : 'df' is the name of my dataset