提问人:user3466328 提问时间:5/31/2014 最后编辑:user3466328 更新时间:5/31/2014 访问量:1776
如何使用 R 按小时分组并计算每个箱中的条目数
How do I group by hour and count number of entries in each bin using R
问:
从 csv 文件导入的数据示例:
2014-05-24 00:15 2014-05-24 00:17 2014-05-3 00:17
2014-05-4 00:17 2014-05-24 00:17
2014-05-5 5 24-05 01:40
6 2014-05-24 01:48
我想按小时分组,然后在 R 中进行组计数,例如。
日期数
24/05/2014 00:00 4
24/05/2014 01:00 2
非常感谢您的帮助!
谢谢
答:
1赞
Luca Braglia
5/31/2014
#1
下面是一个示例
db <- data.frame(time = Sys.time() + seq(1, 10000, by = 100),
counter = 1)
res <- aggregate(db$counter,
by=list(format(db$time, "%Y-%m-%d %H")),
sum)
names(res) <- c("date","count")
res
HTH型
评论