python报ValueError: cannot specify both a fill method and value

问题描述:

在使用python进行缺失值填充时报该错误

源代码:df1['age'].fillna(value=0,method='backfill')

故障原因:不能同时指定填充方法和值

解决方法:将fillna函数中的value参数配置为None,源代码修改为df1['age'].fillna(method='backfill')后执行成功

你可能感兴趣的:(故障汇总,python)