我正在处理时间序列数据。如何计算某一天的时间?

时间:2019-06-04 05:32:13

标签: dataframe time-series data-science

enter image description here enter image description here

图像包含一个具有机器ID和timeinstance作为列的数据集,我必须计算出机器每天工作的总时间。

1 个答案:

答案 0 :(得分:0)

尝试这样的事情。

t1 = pd.to_datetime('1/1/2015 01:00')

t2 = pd.to_datetime('1/1/2015 03:30')

#in seconds
print pd.Timedelta(t2 - t1).seconds / 3600.0

#in hours
print pd.Timedelta(t2 - t1).seconds / 60.0