所以我在这个格式的两列中有一系列值
6/14/1998 17:30 | 6/16/1998 1:45
我想计算R中这两个时间戳之间的时间。
基本上,计算t1和t2之间的小时数。你能帮忙吗?
谢谢!
答案 0 :(得分:1)
小学,并且覆盖了一百万次:
R> difftime(strptime("6/16/1998 01:45", "%m/%d/%Y %H:%M", tz="UTC"),
+ strptime("6/14/1998 17:30", "%m/%d/%Y %H:%M", tz="UTC"),
+ unit="min")
Time difference of 1935 mins
R>
请参阅help(difftime)
和help(strptime)
。