I converted a series to EST with:
pd.to_datetime(my_series, unit='ms').apply(lambda x: x.tz_localize('UTC').tz_convert('US/Eastern'))
and the conversion, e.g. for one of the entries was:
- Input:
1411143681747
- Output:
Timestamp('2014-09-19 12:21:21.747000-0400', tz='US/Eastern')
What does -0400
mean here?