paul jobs wrote:
> http://www.bitbucket.org/lgautier/rpy2/
> Where can i hg pull rpy2 ?
> the above site is down
Seems to be up at the moment.
If you are starting with rpy2, consider sticking to the 2.0.x branch
(latest release being 2.0.1) for the time being. The truck (2.1.x-dev)
should not b
The current (rpy2-2.0.1) r_repr() method used indeed to be __repr__().
There are places in the documentation that were not updated, as you
point it out.
This was changed to avoid flooding accidentally the console during
interactive sessions. It is sometimes hard to anticipate what R
functions r
Oliver Tomic ha scritto:
> I forgot to mention that I tried the following with rpy2, but without
> success:
>
import rpy2.robjects as robjects
robjects.r['library(epiR)']
Hello Oliver,
try this:
[code]
import rpy2.robjects as robjects
robjects.r.library("epiR")
[/code]
or, more like t