Count the number of Non-Missing Values in the DataFrame

34

dfObj.isnull().sum()
cols_to_delete = df.columns[df.isnull().sum()/len(df) > .90]
df.drop(cols_to_delete, axis = 1, inplace = True)

Comments

Submit
0 Comments