search for: 1140mb

Displaying 1 result from an estimated 1 matches for "1140mb".

Did you mean: 1140m
2005 May 30
3
rbind wastes memory
...p, ds) # 198MB x<-rbind(ds.tmp, ds) # 233MB; the same instruction a second time leads to # 35MB more RAM usage - why? Now I played around, but I couldn't find a solution. For example I bound each dataframe step by step and removed the variables and cleared memory, but I still need 1140MB(!) RAM: ________ start example 2 __________ tmpFile<- paste(myFile,'.tmp',sep="") load(myFile) ds.tmp <- ds save(ds.tmp, file=tmpFile, compress=T) for (Cycle in 1:10) { ds <- NULL ds.tmp <- NULL rm(ds, ds.tmp) gc() load(tmpFile) load(myFile) ds.tmp <- rbi...