成功解决AttributeError: 'DataFrame' object has no attribute 'reshape'
解决问题
AttributeError: 'DataFrame' object has no attribute 'reshape'
解决思路
属性错误:“DataFrame”对象没有属性“reshape”
解决方法
“DataFrame”对象没有,但是DataFrame.values有该方法!
DataFrame.values.reshape(-1, 1)
哈哈,大功告成!
赞 (0)