我正在尝试将数据子集化或过滤到定义的时间间隔。你能帮助我将以下数据分成2分钟的时间间隔吗?我看过Lubridate,split()和cut(),但无法弄清楚如何正确地做到这一点。
我看过this post on SO,但它似乎并不是我需要的。
请注意,第1列和第2列是字符类,第3列是POSIXct类。如果可能,我希望解决方案使用datetime列(POSIXct)。
date time datetime use..kW. gen..kW. Grid..kW.
120 12/31/2013 21:59 2013-12-31 21:59:00 1.495833 -0.003083333 1.495833
121 12/31/2013 21:58 2013-12-31 21:58:00 1.829583 -0.003400000 1.829583
122 12/31/2013 21:57 2013-12-31 21:57:00 1.977283 -0.003450000 1.977283
123 12/31/2013 21:56 2013-12-31 21:56:00 2.494750 -0.003350000 2.494750
124 12/31/2013 21:55 2013-12-31 21:55:00 2.218283 -0.003500000 2.218283
125 12/31/2013 21:54 2013-12-31 21:54:00 2.008283 -0.003566667 2.008283
126 12/31/2013 21:53 2013-12-31 21:53:00 2.010917 -0.003600000 2.010917
127 12/31/2013 21:52 2013-12-31 21:52:00 2.011867 -0.003583333 2.011867
128 12/31/2013 21:51 2013-12-31 21:51:00 2.015033 -0.003600000 2.015033
129 12/31/2013 21:50 2013-12-31 21:50:00 2.096550 -0.003850000 2.096550
新子集只会每隔两分钟获取一次数据,如下所示:
date time datetime use..kW. gen..kW. Grid..kW.
121 12/31/2013 21:58 2013-12-31 21:58:00 1.829583 -0.003400000 1.829583
123 12/31/2013 21:56 2013-12-31 21:56:00 2.494750 -0.003350000 2.494750
125 12/31/2013 21:54 2013-12-31 21:54:00 2.008283 -0.003566667 2.008283
127 12/31/2013 21:52 2013-12-31 21:52:00 2.011867 -0.003583333 2.011867
129 12/31/2013 21:50 2013-12-31 21:50:00 2.096550 -0.003850000 2.096550
对于我的数据,我实际上将间隔5和15分钟。但如果我得到一个很好的解决方案,上面的数据和2分钟的间隔,我应该能够适当调整代码,以满足我的需要。
答案 0 :(得分:1)
使用cut
和plyr::ddply
:
groups <- cut(as.POSIXct(df$datetime), breaks="2 min")
library(plyr)
ddply(df, "groups", tail, 1)[, -1]
# date time datetime use..kW. gen..kW. Grid..kW.
# 1 12/31/2013 21:50 2013-12-31 21:50:00 2.096550 -0.003850000 2.096550
# 2 12/31/2013 21:52 2013-12-31 21:52:00 2.011867 -0.003583333 2.011867
# 3 12/31/2013 21:54 2013-12-31 21:54:00 2.008283 -0.003566667 2.008283
# 4 12/31/2013 21:56 2013-12-31 21:56:00 2.494750 -0.003350000 2.494750
# 5 12/31/2013 21:58 2013-12-31 21:58:00 1.829583 -0.003400000 1.829583
或
arrange(ddply(df, "groups", tail, 1)[, -1], datetime, decreasing=TRUE)
如果你想以相反的方式对它进行排序。