'series' object has no attribute 'reshape'
时间: 2023-04-28 12:06:01 浏览: 109
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这意味着在你的代码中你正在尝试将一个pandas Series对象转换成一个数组并使用reshape函数,但是Series对象不支持该函数。你需要先将Series转换为DataFrame或者ndarray,再使用reshape函数。
阅读全文