24
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Pandasのread_csvをした際にある列をdatetimeとして読み込む

Posted at

はじめに

pandasを用いて、csvファイルを読み込む際に、ある行をdatetimeとして読み込みたい。
ただし、dtypeに datetime と記入してもダメだった。

コード

下記のように parse_dates を用いて、datetimeとして扱いたい列を指定する。

test.py
holiday = pd.read_csv(HOLIDAY_FILE,
                      encoding="cp932",
                      header=None, 
                      dtype={0: str,1:str},
                      parse_dates=[0])

すると、下記のようにdatetimeとして読み込めた。

holiday[0][0]
-> Timestamp('2010-01-01 00:00:00')

おわりに

ありがとうございました。

参考サイト

datetime dtypes in pandas read_csv

24
18
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
24
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?