Series object has no attribute reshape解決方法

如圖,在進行reshape操作時,由於採用了pandas,pandas的Series沒有reshape而報錯 解決方法: 用values方法將Series對象轉化成numpy的ndarray,再用ndarray的reshape方法. StandardScaler().fit_transform(data[‘Amount’].values.reshape(-1, 1))
相關文章
相關標籤/搜索