我正在尝试使用 data.table 通过一组三个变量来获取第一行。
我有一个可行的解决方案:
col1 <- c(1,1,1,1,2,2,2,2,3,3,3,3)
col2 <- c(2000,2000,2001,2001,2000,2000,2001,2001,2000,2000,2001,2001)
col4 <- c(1,2,3,4,5,6,7,8,9,10,11,12)
data <- data.frame(store=col1,year=col2,month=12,sales=col4)
solution1 <- data.table(data)[,.SD[1,],by="store,year,month"]
我在以下链接中使用了 Matthew Dowle 建议的较慢的方法:
我正在尝试实现更快的自我加入,但无法使其正常工作。
有没有人有什么建议?