已解决AttributeError: ‘DataFrame’ object has no attribute ‘reshape’

已解决AttributeError: ‘DataFrame‘ object has no attribute ‘reshape‘_解决方法


文章目录

  • 报错问题
  • 解决方法
  • 声明


报错问题

之前在工作中遇到过这个坑,记录一下问题以及解决方法,不一定针对所有情况都能用,但是可以供大家参考。
问题描述如下:

AttributeError: ‘DataFrame’ object has no attribute ‘reshape’

已解决AttributeError: ‘DataFrame‘ object has no attribute ‘reshape‘_python_02

解决方法

已解决AttributeError: ‘DataFrame‘ object has no attribute ‘reshape‘_python_03

属性错误:“DataFrame”对象没有属性“reshape”
“DataFrame”对象没有,但是DataFrame.values有该方法!
DataFrame.values.reshape(-1, 1)

声明

解决方法参考网络,如有侵权联系我删除