我有以下 tz 感知字符串。
我想对此数据使用 data.resample('D') 操作。
我在将其转换为正确的格式时遇到一些麻烦。我尝试过使用 pd.to_datetime 但在尝试使用重新采样时出现以下错误。
类型错误:仅对 DatetimeIndex、TimedeltaIndex 或 periodIndex 有效,但获得了“Index”的实例
>>> test1['timestamp']
0 2017-01-03 08:30:00-06:00
1 2017-01-03 08:30:32-06:00
2 2017-01-03 08:30:42-06:00
3 2017-01-03 08:30:46-06:00
4 2017-01-03 08:30:52-06:00
...
65334 2017-12-29 14:55:02-06:00
65335 2017-12-29 14:55:26-06:00
65336 2017-12-29 14:55:54-06:00
65337 2017-12-29 14:59:23-06:00
65338 2017-12-29 14:59:46-06:00
Name: timestamp, Length: 65339, dtype: object
实现这一目标的最佳方法是什么?
慕慕森
相关分类