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
You can use any axis=1 to check for least one True per row, then filter with boolean indexing:
axis=1
True
null_data = df[df.isnull().any(axis=1)]