Thanks for the nice tip.
I also consider to use the clipboard to transfer a command with the
file path which then can be pasted easily in the shell and executed.
Gabor Grothendieck wrote:
>
> Not sure if this is sufficient but if you always open your RData
> file in the same directory this
Not sure if this is sufficient but if you always open your RData
file in the same directory this may be good enough:
mkdir ~/tmp
cd ~/tmp
R
x <- 33
q() # answer y to save in .RData
Now whenever you open R in ~/tmp it will load .RData containing x.
You must be in ~/tmp and the file must be called
$ R
...
> load("/home/user/workspace.RData")
or put that line in your .Rprofile -- see ?Startup.
(My guess is that you are used to the facility for drag-and-drop on Windows.
Also, please re-read 'An Introduction to R' for the supported command-line
arguments -- '-f' is supported but this is not
On Thu, 27 Mar 2008, Bio7 wrote:
>
> Dear R developers,
>
> i would like to start R with a *.RData argument under Linux.
> Something like R -f /home/user/workspace.RData
>
> Is this possible?
$ R
...
> load("/home/user/workspace.RData")
or put that line in your .Rprofile -- see ?Startup.
(My gu
Dear R developers,
i would like to start R with a *.RData argument under Linux.
Something like R -f /home/user/workspace.RData
Is this possible?
Thanks in advance for any answers.
--
View this message in context:
http://www.nabble.com/Execute-R-with-*.RData-argument-tp16323374p16323374.html
S
5 matches
Mail list logo