如何在Python中解析字段DatetimeIndex和字段datetime.time

时间:2018-08-30 13:03:11

标签: python-3.x datetime datetimeindex

我正在将Python 3.6.5与编辑器Spyder一起使用。我在解析DatetimeIndex和datetime.time时遇到麻烦。在第一列“ ActStartDateExecution”中,我具有DatetimeIndex(带有日,月和年),在第二列“ ActStartTimeExecution”中,我具有时,分和秒。

'ActStartDateExecution''ActStartTimeExecution' 
2016-02-17              11:00:00
2016-02-18              12:41:23
2016-02-18              12:41:08
2016-02-18              12:41:08
2016-02-18              12:41:32

现在,如果我运行Raw_data['Start_date_time'] = Raw_data['ActStartDateExecution'] + Raw_data['ActStartTimeExecution'],我将变成错误TypeError: unsupported operand type(s) for +: 'DatetimeIndex' and 'datetime.time',第一行的期望输出将是date + time:2016-02-17 11:00:00,从此计算得出的最终结果列,我想稍后提取(年),(月),(周数),(年和月),(年和周数),因此计算列必须保留其日期和时间特征。

0 个答案:

没有答案