AttributeError: 'Series' object has no attribute 'reshape'解决办法

用kmeans方法对连续数据离散化的时候碰到一个错误
将输入的excel数据存入DataFrame中,然后想拿出其中的一列转置后给kmeans的model用,但是转置的时候提示Series没有reshape方法。
错误提示是“AttributeError: 'Series' object has no attribute 'reshape'”
这个时候,调用series的values,这个values是numpy的ndarray类型,就有reshape方法了。然后就没错了。

你可能感兴趣的:(AttributeError: 'Series' object has no attribute 'reshape'解决办法)