数据清洗
原文链接: 数据清洗
pandas
再删除缺失值大于90%的变量:
`df.dropna(thresh = len(df) * 0.1 , axis=1,inplace=True)`
df.dropna(thresh=np.int((100-percent_NA_cols_required)*(len(df.columns)/100)),inplace=True)
by · 2019年01月18日 · 46 Words · ~1min reading time | Improve on
再删除缺失值大于90%的变量:
`df.dropna(thresh = len(df) * 0.1 , axis=1,inplace=True)`
df.dropna(thresh=np.int((100-percent_NA_cols_required)*(len(df.columns)/100)),inplace=True)
Tags: machinelearn
More