本文主要是介绍imputer.fit填充时报错:not supported between instances of ‘str‘ and ‘float‘,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
imputer = Imputer(strategy = 'median')
imputer.fit(train)
检索数据类型
存在一列bool类型
将其修正为int类型之后,就可以正常运行。
但是,如果我单独imputer.fit()bool类型这一列,就不会报错
包含了bool类型运行正常,不会报错,但是我如果fit所有列就会失败。
这篇关于imputer.fit填充时报错:not supported between instances of ‘str‘ and ‘float‘的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!