Re: [Rpy] Error Tried to guess R's HOME but no R command in the PATH

2012-10-18 Thread Laurent Gautier
Did you check the following ? https://bitbucket.org/lgautier/rpy2/issue/95/automagic-settings-for-windows On 2012-10-18 17:34, Shane Carey wrote: Already tried that. On Thu, Oct 18, 2012 at 4:33 PM, Paul Hobson > wrote: Add the path to the R executable to your s

Re: [Rpy] Error Tried to guess R's HOME but no R command in the PATH

2012-10-18 Thread Shane Carey
Already tried that. On Thu, Oct 18, 2012 at 4:33 PM, Paul Hobson wrote: > Add the path to the R executable to your system path. > > See here for instructions: > http://www.computerhope.com/issues/ch000549.htm#0 > > On Thu, Oct 18, 2012 at 7:57 AM, Shane Carey wrote: > > Hi, > > > > I have downl

Re: [Rpy] Error Tried to guess R's HOME but no R command in the PATH

2012-10-18 Thread Paul Hobson
Add the path to the R executable to your system path. See here for instructions: http://www.computerhope.com/issues/ch000549.htm#0 On Thu, Oct 18, 2012 at 7:57 AM, Shane Carey wrote: > Hi, > > I have downloaded Rpy2, but when I go to install it, I get the following > error, > Error Tried to gues

Re: [Rpy] Plotting with RPy

2012-10-18 Thread Thomas Kluyver
On 18 October 2012 15:51, Shane Carey wrote: > I have downloaded RPY2, but when I go to install it, I get the following > error, > Error Tried to guess R's HOME but no R command in the PATH > Any idea about this? Oh, sorry, I've just noticed you're on Windows. I think rpy2 still needs someone to

[Rpy] Error Tried to guess R's HOME but no R command in the PATH

2012-10-18 Thread Shane Carey
Hi, I have downloaded Rpy2, but when I go to install it, I get the following error, Error Tried to guess R's HOME but no R command in the PATH Any idea about this? Many thanks for your help. Cheers -- Shane -- Everyone ha

Re: [Rpy] Plotting with RPy

2012-10-18 Thread Shane Carey
I have downloaded RPY2, but when I go to install it, I get the following error, Error Tried to guess R's HOME but no R command in the PATH Any idea about this? On Thu, Oct 18, 2012 at 1:20 PM, Thomas Kluyver wrote: > On 18 October 2012 11:34, Shane Carey wrote: > > from rpy import * > > Unless

Re: [Rpy] Plotting with RPy

2012-10-18 Thread Thomas Kluyver
On 18 October 2012 11:34, Shane Carey wrote: > from rpy import * Unless you particularly need to use rpy, I think the advice is to use rpy2 (http://rpy.sourceforge.net/rpy2.html ). Thomas -- Everyone hates slow websites

Re: [Rpy] working with R - 2.15.1 (06-22-2012) - what Rpy version

2012-10-18 Thread Artur Wroblewski
On Thu, Oct 18, 2012 at 12:17 PM, Jaime A. Florez wrote: > Hi, > > I am just starting with Rpy so I would appreciate a little more advice: > > * I have the latest version of R (2.15.1,06-22-2012). Can Rpy2 handle > that R version? > - If Rpy can handle it, what version of Rpy is that? >

[Rpy] tutorial - getting started

2012-10-18 Thread Jaime A. Florez
I forgot: Any advice for a good tutorial to get started with Rpy? I found http://rpy.sourceforge.net/rpy2/doc-2.2/html/introduction.html  , just looking for for other good sources for beginners   Jaime-- Everyone hates slo

[Rpy] working with R - 2.15.1 (06-22-2012) - what Rpy version

2012-10-18 Thread Jaime A. Florez
Hi, I am just starting with Rpy so I would appreciate a little more advice: * I have the latest version of R (2.15.1,    06-22-2012). Can Rpy2 handle that R version?     - If Rpy can handle it, what version of Rpy is that?     - If not, what is the latest version of R that Rpy can handle? * What

[Rpy] Plotting with RPy

2012-10-18 Thread Shane Carey
Hi, I am new to RPy and I am trying to carry out a very simple task of plotting to get me started. This is my code: from rpy_options import set_options set_options(RHOME='C/Progra~1/R/rw2011/') from rpy import * x = range(0, 10) y = range(0, 10) r.plot(x, y) Everthing works fine, howev