I have some files saved from a different computer using save()
whereby several objects were stored in RDA file.
However, the new computer doesn't have space for all the files so I want to just load my main file. How can I load only that file from the session?
library(dplyr)
iris <- iris
cars <- cars
save(list = c("iris", "cars"), file = "myData.Rdata")
Attempt to load:
load(file="myData.Rdata", object = "cars")
I have tried using the lazyLoad() DB method suggested but get an error about the file is still too big to load at the creation of the db.