Skip to main content

PandasのColumnをDateTimeに型変換する

to_datetimeを利用する

df = df.to_datetime(df['created_at'], format='')

strftimeのリファレンスを読みながら調整

Twitterの場合

Sun Mar 25 09:10:42 +0000 2018
%a %b %d %H:%M:%S +0000 %Y

Timezoneの変更

http://pman0214.github.io/blog/pandas-tz-convert.html