R:使用data.table& amp;自联接

时间:2013-04-02 23:09:32

标签: r data.table self-join

我正在尝试使用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在以下链接中建议的较慢方法:

https://stats.stackexchange.com/questions/7884/fast-ways-in-r-to-get-the-first-row-of-a-data-frame-grouped-by-an-identifier

我正在尝试实现更快的自联接,但无法让它工作。

有人有任何建议吗?

2 个答案:

答案 0 :(得分:23)

选项1(使用键)

将密钥设置为store, year, month

DT <- data.table(data, key = c('store','year','month'))

然后,您可以使用unique创建包含键列唯一值的data.table。默认情况下,这将采用第一个条目

unique(DT)
   store year month sales
1:     1 2000    12     1
2:     1 2001    12     3
3:     2 2000    12     5
4:     2 2001    12     7
5:     3 2000    12     9
6:     3 2001    12    11

但是,可以肯定的是,您可以使用mult='first'进行自我加入。 (其他选项包括'all''last'

# the key(DT) subsets the key columns only, so you don't end up with two 
# sales columns
DT[unique(DT[,key(DT), with = FALSE]), mult = 'first']

选项2(无键)

如果不设置密钥,使用.I而不是.SD

会更快
DTb <- data.table(data)
DTb[DTb[,list(row1 = .I[1]), by = list(store, year, month)][,row1]]

答案 1 :(得分:2)

怎么样:

solution2 <- data.table(data)[ , sales[1], by="store,year,month"]
> solution2
   store year month V1
1:     1 2000    12  1
2:     1 2001    12  3
3:     2 2000    12  5
4:     2 2001    12  7
5:     3 2000    12  9
6:     3 2001    12 11

我想您可以重命名该列:

data.table(data)[,fsales := sales[1],by="store,year,month"]