pd.to_datetimeが使えない

実現したいこと

pd.to_datetimeをjupyter notebook上で使えるようにしたい

発生している問題・分からないこと

一昨日まではpd.to_datetime関数がvs code(jupyter notebook)上で使えたのですが、昨日を境に使えなくなり、object型をdatetime型に変換できなくなってしまいました。pandas(pd).read_csvなど他のモジュールは使えます。

エラーメッセージ

error

1ValueError: time data "2021-03-02" doesn't match format "%Y/%m/%d", at position 1332. You might want to try: 2 - passing `format` if your strings have a consistent format; 3 - passing `format='ISO8601'` if your strings are all ISO8601 but not necessarily in exactly the same format; 4 - passing `format='mixed'`, and the format will be inferred for each element individually. You might want to use `dayfirst` alongside this. 5

該当のソースコード

tmp=pd.to_datetime(data['closeDate']) tmp.dtypes

試したこと・調べたこと

上記の詳細・結果

chatgptで調べ、最新データがあったのでpip3 install --upgrade pandasで更新を行った(更新できました)のですが、jupyter notebookを起動し直しても、改善されませんでした。

補足

特になし

コメントを投稿

0 コメント