AttributeError: 'Series' object has no attribute 'reshape'. Did you mean: 'shape'?
时间: 2023-11-05 15:00:01 浏览: 203
AttributeError: module 'tensorflow.compat.v1' has no attribute '
引用中提到,Series对象类似一维数组,但与数组不同的是,Series对象不支持reshape属性。而reshape属性是ndarray等对象有的。如果你想使用reshape方法,可以通过使用Series对象的values属性来获取其ndarray形式,然后再进行reshape操作。例如,你可以使用`sel.values.reshape(-1,1)`来改变Series对象的形状。
回答完问题,我还可以提供以下几个
阅读全文