Skip to content
Prev 43057 / 63421 Next

unexpectedly high memory use in R 2.14.0

On Apr 12, 2012, at 00:53 , andre zege wrote:

            
Hmm, did you preallocate mat.data? If not, you will be copying it repeatedly, and I'm not sure that this can be done by copying pointers only. 

Does it work better with 

mat.data <- lapply(files, function(name) {load(file.path(dump.dir, name); data})

?