You can read dates as UTC directly from read_csv
by setting the date_parser
function manually, for example:
from dateutil.tz import tzutc
from dateutil.parser import parse
def date_utc(s):
return parse(s, tzinfos=tzutc)
df = read_csv('my.csv', parse_dates=[0], date_parser=date_utc)
.
If you are creating a timeseries, you can use the tz
argument of date_range
:
dd = pd.date_range('2012-1-1 1:30', periods=3, freq='min', tz='UTC')
In [2]: dd
Out[2]:
<class 'pandas.tseries.index.DatetimeIndex'>
[2012-01-01 01:30:00, ..., 2012-01-01 01:32:00]
Length: 3, Freq: T, Timezone: UTC
.
If your DataFrame/Series is already index by a timeseries, you can use the tz_localize
method to set a timezone:
df.tz_localize('UTC')
or if it already has a timezone, use tz_convert
:
df.tz_convert('UTC')
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…