I am trying to get single objects (data frames) from different RData files in the same environment, which RData files are all very big so they cannot be loaded. I get error messages that the vectors cannot be allocated due to memory issues. I have tried almost all of the previous suggestions with 'lazy loading', attach etc. but none of them seems to work as the memory limit is exceeded.
Below you may see an example of what I am trying to do:
rm(list=ls())
tmp.env<-new.env()
attach("~/Data/results/chunk1.RData")
a1<-get("a1", pos=tmp.env)
attach("~/Data/results/chunk2.RData")
a2<-get("a2", pos=tmp.env)
attach("~/Data/results/chunk3.RData")
a3<-get("a3", pos=tmp.env)
I would appreciate any suggestion that could possibly work with that big data.