📜  获取 pandas 中缺失值的数量 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:09.576000             🧑  作者: Mango

代码示例4
cols_to_delete = df.columns[df.isnull().sum()/len(df) > .90]
df.drop(cols_to_delete, axis = 1, inplace = True)