Answers for "test dframe row for nan + pandas"

4

to detect if a data frame has nan values

df.isnull().sum().sum()
5
Posted by: Guest on April-23-2020
2

count rows with nan pandas

np.count_nonzero(df.isnull().values)   
 np.count_nonzero(df.isnull())           # also works
Posted by: Guest on January-14-2021

Python Answers by Framework

Browse Popular Code Answers by Language