【发布时间】:2015-03-21 04:23:25
【问题描述】:
我有下表
DT = data.table(x=rep(c("a","b","c"),each=3), y=c(1,3,6), v=rep(4:6, 3))
我想统计有多少行满足条件(y==3 & v==5)。
我可以得到满足条件的行,所以我可以保存它们然后计算行数。但是,我知道使用 .N 可以更有效地完成它,我只是不知道如何。我的代码:
require(data.table)
keycols = c("y","v")
setkeyv(DT,keycols)
DT[J(3,5)] # This gets the subset I am interested in
DT[ , `:=` (count = .N), by = J(3,5)] # This is one of the multiple unsuccessful ways I have been trying to count the rows.
有人知道如何使最后一行工作吗?
【问题讨论】:
-
新的Introduction to data.table 和Reference semantics 小插图有更多示例。检查this page 以获取更新。
标签: r count data.table