グループごとに最初と最後の行を見つける効率的な方法を見つけようとしています。
R) ex=data.table(state=c("az","fl","fl","fl","fl","fl","oh"),city=c("TU","MI","MI","MI","MI","MI","MI"),code=c(85730,33133,33133,33133,33146,33146,45056))
R) ex
state city code
1: az TU 85730
2: fl MI 33133
3: fl MI 33133
4: fl MI 33133
5: fl MI 33146
6: fl MI 33146
7: oh MI 45056
グループの各変数の最初と最後を見つけたい
R) ex
state city code first.state last.state first.city last.city first.code last.code
1: az TU 85730 1 1 1 1 1 1
2: fl MI 33133 1 0 1 0 1 0
3: fl MI 33133 0 0 0 0 0 0
4: fl MI 33133 0 0 0 0 0 1
5: fl MI 33146 0 0 0 0 1 0
6: fl MI 33146 0 1 0 1 0 1
7: oh MI 45056 1 1 1 1 1 1
私が知る限り、トリプレットを見るdata.table
ので、このようなことを簡単に助けることはできません.by="state,city,code"
4
私が知っている唯一の方法は、by="state,city,code" で first/last.code を探し、次に by="state,city" で first/last.city を探すことです。
これは私が意味したものです:
applyAll <- function(DT, by){
f<- function(n, vec){ return(vec[1:n]) }
by <- lapply(1:length(by), FUN=f, by)
out <- Reduce(f=firstLast, init=DT, x=by)
return(out)
}
firstLast <- function(DT, by){
addNames <- paste(c("first", "last"),by[length(by)], sep=".")
DT[DT[,list(IDX=.I[1]), by=by]$IDX, addNames[1]:=1]
DT[DT[,list(IDX=.I[.N]), by=by]$IDX, addNames[2]:=1]
return(DT);
}
結果:applyAll(ex,c("state","city","code"))
しかし、これはの多数のコピーを作成しますDT
。私の質問は、グループごとに最初/最後に取得できないような予定または既存のものがあるかどうかです. SAS
(これはまたはkdb
またはのかなりバニラですSQL
)
でSAS
:
data DT;
set ex;
by state city code;
if first.code then firstcode=1;
if last.code then lastcode=1;
if first.city then firstcity=1;
if last.city then lastcity=1;
if first.state then firststate=1;
if last.state then laststate=1;
run;