我是靠谱客的博主 矮小战斗机,这篇文章主要介绍出现 ‘Series‘ object has no attribute ‘reshape‘ 错误,现在分享给大家,希望可以做个参考。

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

复制代码
1
2
sample = sample.reshape([10, 10])

改为

复制代码
1
2
sample = sample.values.reshape([10, 10])

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

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

最后

以上就是矮小战斗机最近收集整理的关于出现 ‘Series‘ object has no attribute ‘reshape‘ 错误的全部内容,更多相关出现内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部