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 be particularly broken at any point in time, but there might 
be API changes...


> On 1/7/09, *paul jobs*  > wrote:
> 
> Hey guys
> should i use rpy or rpy2
> i m learning r language and rpy simultaneously
> 
> thanks a lot for pointers
> 
> 
> 
> 
> 
> --
> Check out the new SourceForge.net Marketplace.
> It is the best place to buy or sell services for
> just about anything Open Source.
> http://p.sf.net/sfu/Xq1LFB
> 
> 
> 
> 
> ___
> rpy-list mailing list
> rpy-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/rpy-list


--
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
___
rpy-list mailing list
rpy-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rpy-list


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 return, and when working with large objects that's was a problem.


L.




Alan G Isaac wrote:
> On 1/7/2009 5:13 PM Alan G Isaac apparently wrote:
>> Access to robjects
>> does not match the documentation
> 
> Badly put: I should have said that
> *representation* of robjects does
> not match the documentation.
> (And is therefore much less useful.)
> 
> Alan Isaac
> 
> 
> --
> Check out the new SourceForge.net Marketplace.
> It is the best place to buy or sell services for
> just about anything Open Source.
> http://p.sf.net/sfu/Xq1LFB
> ___
> rpy-list mailing list
> rpy-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/rpy-list


--
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
___
rpy-list mailing list
rpy-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rpy-list


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 the code you wrote:

robjects.r['library']("epiR")

hope this helps,

cheers

Anne

--
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
___
rpy-list mailing list
rpy-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rpy-list