python pandas计算时间直到输出低于设定值

时间:2016-08-10 22:23:54

标签: python pandas

我在python中有一个pandas数据帧,有几列和一个日期时间戳。是否可以计算秒数,直到输出低于设定值(比如2)?

理想情况下,如果设定值为2,它会看起来像这样:

 datetime               output     secondsuntilbelow
 2014-05-01 01:00:00    3         2
 2014-05-01 01:00:01    2         1
 2014-05-01 01:00:02    1         0
 2014-05-01 01:00:03    2         1
 2014-05-01 01:00:04    1         0

0 个答案:

没有答案