Hello guys and happy new year,
I was wondering if data.table could handle an update executed based on a select for each by-group.
R) a=data.table(x=c("a","a","b","b","c","c"),y=c(1,2,3,3,2,1))
R) a
x y
1: a 1
2: a 2
3: b 3
4: b 3
5: c 2
6: c 1
If I want to update on a condition within each by-group I need to do the select in j, but this is more of an i thing (selection).
R) a[,c:=ifelse(y==max(y),"yes","no"),by=x]
R) a
x y c
1: a 1 no
2: a 2 yes
3: b 3 yes
4: b 3 yes
5: c 2 yes
6: c 1 no
Can I do the same using an option something like a[y==max(y),c:="yes",by=x,within.by=TRUE] I think it would be much faster
Second question, is it scheduled to get a drop argument in data.table, to be able to do
DT[drop="x,y,z"] that would essentially be DT[,':='(x=NULL,y=NULL,z=NULL)]
ifelse.a[,c:= y==max(y),by=x]is faster. – Roland Jan 7 at 14:55a[,c:= c("no", "yes")[(y == max(y)) + 1],by=x]. – Sven Hohenstein Jan 7 at 15:37:=takes multiple LHS:DT[,c("x","y","z"):=NULL]– Matthew Dowle Jan 7 at 15:41bitpackage would be the real saving, which is 32 times less, or 64 times less (I think). Haven't usedbitwithdata.table, yet, though. – Matthew Dowle Jan 7 at 17:02