📌  相关文章
📜  在 pandas 中按列计算缺失值 - Python 代码示例

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

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