Answers for "how to check the rows which have na in python"

0

pandas df where row has na

df[df.isna().any(axis=1)]
Posted by: Guest on February-23-2021
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

Code answers related to "how to check the rows which have na in python"

Python Answers by Framework

Browse Popular Code Answers by Language