Answers for "count number of columns that are empty python"

1

number of columns with no missing values

null_cols = df.columns[df.isnull().all()]
df.drop(null_cols, axis = 1, inplace = True)
Posted by: Guest on April-15-2020
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 "count number of columns that are empty python"

Python Answers by Framework

Browse Popular Code Answers by Language