Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
pandas.Series does not allow adding timedeltas to series of timestamps with datetime information #10763
Comments
katastrofa999
referenced
this issue
Aug 7, 2015
Closed
reset_index loses type information on time indices with time zone information #10762
|
pls pd.show_versions() |
|
this by definition won't work because tzs are not a real dtype (coming soon though) and FYI numpy looks like it works but is actually do the wrong thing - it silently coerces to UTC |
katastrofa999
commented
Aug 7, 2015
INSTALLED VERSIONScommit: None pandas: 0.15.2 |
katastrofa999
commented
Aug 7, 2015
|
So the only option is to do it row-by-row? |
jreback
added Timeseries Timezones
labels
Aug 7, 2015
jreback
added this to the
0.17.0
milestone
Aug 7, 2015
jreback
added a commit
to jreback/pandas
that referenced
this issue
Aug 14, 2015
|
|
jreback |
6beba0d
|
jreback
added a commit
to jreback/pandas
that referenced
this issue
Sep 5, 2015
|
|
jreback |
27b7b1e
|
jreback
closed this
in #10477
Sep 5, 2015
nickeubank
added a commit
to nickeubank/pandas
that referenced
this issue
Sep 29, 2015
|
|
jreback + nickeubank |
1cbdcb5
|
katastrofa999 commentedAug 7, 2015
xref #10477
It is possible with numpy, but not with pandas:
s + dsthrows an errorufunc add cannot use operands with types dtype('O') and dtype('<m8[ns]')