여기에 사용하는 솔루션이다 data.table 의 :=
Andrie 및 Ramnath의 응답에 구축, 연산자.
require(data.table) # v1.6.6
require(gdata) # v2.8.2
set.seed(1)
dt1 = create_dt(2e5, 200, 0.1)
dim(dt1)
[1] 200000 200 # more columns than Ramnath's answer which had 5 not 200
f_andrie = function(dt) remove_na(dt)
f_gdata = function(dt, un = 0) gdata::NAToUnknown(dt, un)
f_dowle = function(dt) { # see EDIT later for more elegant solution
na.replace = function(v,value=0) { v[is.na(v)] = value; v }
for (i in names(dt))
eval(parse(text=paste("dt[,",i,":=na.replace(",i,")]")))
}
system.time(a_gdata = f_gdata(dt1))
user system elapsed
18.805 12.301 134.985
system.time(a_andrie = f_andrie(dt1))
Error: cannot allocate vector of size 305.2 Mb
Timing stopped at: 14.541 7.764 68.285
system.time(f_dowle(dt1))
user system elapsed
7.452 4.144 19.590 # EDIT has faster than this
identical(a_gdata, dt1)
[1] TRUE
f_dowle은 dt1을 참조로 업데이트했습니다. 로컬 복사본이 필요한 copy
경우 전체 데이터 집합의 로컬 복사본을 만들 려면 함수 를 명시 적으로 호출해야합니다 . data.table의 setkey
, key<-
및 :=
-복사에 쓰기하지 않습니다.
다음으로 f_dowle이 시간을 보내는 위치를 봅시다.
Rprof()
f_dowle(dt1)
Rprof(NULL)
summaryRprof()
$by.self
self.time self.pct total.time total.pct
"na.replace" 5.10 49.71 6.62 64.52
"[.data.table" 2.48 24.17 9.86 96.10
"is.na" 1.52 14.81 1.52 14.81
"gc" 0.22 2.14 0.22 2.14
"unique" 0.14 1.36 0.16 1.56
... snip ...
나는 거기에 초점을 맞출 것이다 na.replace
및 is.na
벡터 복사 및 벡터 스캔 몇이있는 곳. NA
벡터에서 참조로 업데이트 되는 작은 na.replace C 함수를 작성하면 상당히 쉽게 제거 할 수 있습니다 . 그것은 내가 생각하는 20 초 이상 절반이 될 것입니다. 이러한 기능이 R 패키지에 있습니까?
f_andrie
실패한 이유 는 전체를 복사하거나 전체 dt1
만큼 큰 논리 행렬을 생성 하기 때문일 수 있습니다 dt1
. 다른 두 가지 방법은 한 번에 한 열에서 작동합니다 (단순히 보았지만 NAToUnknown
).
편집 (의견에 Ramnath의 요청에 따라보다 우아한 솔루션) :
f_dowle2 = function(DT) {
for (i in names(DT))
DT[is.na(get(i)), (i):=0]
}
system.time(f_dowle2(dt1))
user system elapsed
6.468 0.760 7.250 # faster, too
identical(a_gdata, dt1)
[1] TRUE
나는 그런 식으로 시작했으면 좋겠다!
EDIT2 (1 년 후, 지금)
또한 있습니다 set()
. [,:=,]
루프에서 호출하는 (작은) 오버 헤드를 피하기 때문에 많은 열이 반복되는 경우 더 빠를 수 있습니다 . set
loopable :=
입니다. 참조하십시오 ?set
.
f_dowle3 = function(DT) {
# either of the following for loops
# by name :
for (j in names(DT))
set(DT,which(is.na(DT[[j]])),j,0)
# or by number (slightly faster than by name) :
for (j in seq_len(ncol(DT)))
set(DT,which(is.na(DT[[j]])),j,0)
}
data.table
A를data.frame
? Adata.table
는 입니다data.frame
. 모든 data.frame 작업이 작동합니다.