Pandas - check if ALL values are NaN in Series
This will check for all columns..
mys.isnull().values.all(axis=0)
Yes, that's correct, but I think a more idiomatic way would be:
mys.isnull().all()
This will check for all columns..
mys.isnull().values.all(axis=0)
Yes, that's correct, but I think a more idiomatic way would be:
mys.isnull().all()