'Int64Index' object has no attribute 'reshape'の解決法
はじめに
オライリージャパンの「Pyhtonではじめる機械学習」のp.238にて,citibikeの時刻データをPOSIX時刻に変換するコードで以下のようなエラーが発生した.
X = citibike.index.astype("int64").reshape(-1,1) //10**9
エラー内容
AttributeError: 'Int64Index' object has no attribute 'reshape'
解決法
以下のように元のコードにvaluesを加えると解決できます.
X = citibike.index.astype("int64").values.reshape(-1,1) //10**9
どうも自分の持っている書籍の版が古いらしく,おそらく修正前のやつであるっぽいですね...(いろいろとエラーが多いと感じる笑)
Author And Source
この問題について('Int64Index' object has no attribute 'reshape'の解決法), 我々は、より多くの情報をここで見つけました https://qiita.com/tatsu2015/items/64caeec142c493121bd4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .