Displaying 1 result from an estimated 1 matches for "imagefromlastrsession".
2012 Jan 22
1
how to load R data file into a structure?
...some important variables in the current R session;
and I wanted to load some rData file which was saved during the last R
session using "save.image"...
But how do I avoid the newly loaded data/variables messing with my existing
data/variables?
In Matlab, I can do:
mynewdata=load("imagefromlastRsession.rData")
and then I can access the variables therein as follows:
mynewdata.variable1
mynewdata.variable2
mynewdata.variable3
...
...
...
As you can see, this way, these variables won't interfere with my existing
variables in the current R session...
How to do that?
Thanks a lot!
[[...