Re: [Rpy] is rpy2 the default supported python module now

2009-01-08 Thread Laurent Gautier
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

Re: [Rpy] rpy on Windows

2009-01-08 Thread Laurent Gautier
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

Re: [Rpy] load R-library via rpy2

2009-01-08 Thread Anne Ghisla
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