While working in Pandas in Python...
I\'m working with a dataset that contains some missing values, and I\'d like to return a dataframe which contains only those rows wh
df.isnull().any(axis = 1).sum()
this gives you the total number of rows with at least one missing data