📌  相关文章
📜  删除一个 ccolumns egale 到 nan 的所有行 - Python 代码示例

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

代码示例2
#remove in dataframe but no in the file
df = df[df['column'].notna()]

#remove in dataframe and in the file
df.dropna(subset=['EPS'], how='all', inplace=True)