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
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
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
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