enter image description here enter image description here
图像包含一个具有机器ID和timeinstance作为列的数据集,我必须计算出机器每天工作的总时间。
答案 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