当前位置: 代码迷 >> 综合 >> 出现 ‘Series‘ object has no attribute ‘reshape‘ 错误
  详细解决方案

出现 ‘Series‘ object has no attribute ‘reshape‘ 错误

热度:10   发布时间:2024-02-09 09:44:02.0

原因:需要更详细的分类reshape函数
操作:添加 .values,如

sample = sample.reshape([10, 10])

改为

sample = sample.values.reshape([10, 10])

错误来自于探索性数据分析初探:

https://blog.csdn.net/qq_43653405/article/details/107916619

  相关解决方案