を推奨されていません、私は配列Pythonのnumpyの:リシェイプが
myArray = np.reshape(myVector,[nCol,nRow])
にベクトルを再構築しようとしているが、私は減価償却の警告を得る:私は
myArray = np.values.reshape(myVector,[nCol,nRow])
を使用する場合
FutureWarning: reshape is deprecated and will raise in a subsequent release. Please use .values.reshape(...) instead
return reshape(newshape, order=order)
を
エラーが発生します
AttributeError: module 'numpy' has no attribute 'values'
誰かが何が起こっているのか、私は何をすべきか説明できますか?多くのありがとう
numpyの警告されていないこと。 'myVector'はパンダオブジェクトですか? –
@WarrenWeckesserはい、myVectorは大きなデータフレームの1つの列です。申し訳ありませんが私はそれを見逃した – jlt199
numpy配列オブジェクトにアクセスする必要がありますそれから 'np.reshape(myVector.values、(nCol、nRow))' – Psidom