Re: [R] Running R from windows command prompt

2011-06-29 Thread Orvalho Augusto
t like R CMD BATCH e.g Good luck Caveman On 6/29/11, Michael Sumner wrote: > On Wed, Jun 29, 2011 at 1:51 AM, Robert Baer wrote: >> Subject: Re: [R] Running R from windows command prompt >> > >> --- >> Actually, you can 'cut and paste'

Re: [R] Running R from windows command prompt

2011-06-28 Thread Michael Sumner
On Wed, Jun 29, 2011 at 1:51 AM, Robert Baer wrote: > Subject: Re: [R] Running R from windows command prompt > > --- > Actually, you can 'cut and paste' from at Windows Cmd prompt.  It is done by > clicking the > C: icon in the upper left of the comman

Re: [R] Running R from windows command prompt

2011-06-28 Thread Robert Baer
Subject: Re: [R] Running R from windows command prompt Hi Siddharth, many experts already answered your query, however I would like to share how I run R in command prompt: 1. open command prompt 2. change working directory: cd C:\\R-2.13.0\bin\i386 (put the entire path here

Re: [R] Running R from windows command prompt

2011-06-28 Thread Arun Kumar Saha
Hi Siddharth, many experts already answered your query, however I would like to share how I run R in command prompt: 1. open command prompt 2. change working directory: cd C:\\R-2.13.0\bin\i386 (put the entire path here, however many people might find this step weird, you can have

Re: [R] Running R from windows command prompt

2011-06-28 Thread Uwe Ligges
On 28.06.2011 13:56, Mike Marchywka wrote: To: lig...@statistik.tu-dortmund.de CC: r-help@r-project.org Subject: Re: [R] Running R from windows command prompt Thanks for your help. I tried the way you mentioned for my first question. But I am not getting any results. Can you please

Re: [R] Running R from windows command prompt

2011-06-28 Thread Mike Marchywka
> To: lig...@statistik.tu-dortmund.de > CC: r-help@r-project.org > Subject: Re: [R] Running R from windows command prompt > > Thanks for your help. > > I tried the way you mentioned for my first question. But I am not getting > any results. > Can you please ex

Re: [R] Running R from windows command prompt

2011-06-28 Thread siddharth arun
Thanks for your help. I tried the way you mentioned for my first question. But I am not getting any results. Can you please explain in detail the process through which I can run a R code from windows command prompt. 2011/6/28 Uwe Ligges > > > On 28.06.2011 11:54, siddharth arun wrote: > >> 1. I

Re: [R] Running R from windows command prompt

2011-06-28 Thread Uwe Ligges
On 28.06.2011 11:54, siddharth arun wrote: 1. I have a R program in a file say "functions.R". I load the "functions.R" file the R using source("function.R") and then call functionsf1(), f2() etc. which are declared and defined within "function.R" file. I also need to load a couple of R librar

[R] Running R from windows command prompt

2011-06-28 Thread siddharth arun
1. I have a R program in a file say "functions.R". I load the "functions.R" file the R using source("function.R") and then call functionsf1(), f2() etc. which are declared and defined within "function.R" file. I also need to load a couple of R libraries using library() before I can use f1(), f2()