Reputation: 1393
How do I find out the total number of rows that have missing data in a Pandas DataFrame? I have tried this:
df.isnull().sum().sum()
But this is for the total missing fields. I need to know how many rows are affected.
Upvotes: 8
Views: 5223