[Rpy] Error loading bioconductor affy library..

2009-09-11 Thread Paul Geeleher
Hi guys, I'm getting this error below when I try to load the bioconductor affy library through rpy. It loads find in R though. Its a 64 bit opensuse system. Any ideas would be greatly appreciated! Paul. >>> from rpy import r >>> r('library("affy")') Loading required package: Biobase Welcome to Bi

[Rpy] rpy syntax error...

2009-09-11 Thread Nick Schurch
Dear Rpythoners, I'm having a problem using an R package called 'pvclust' from python. I have rpy installed and things look like they are fine. The pvclust package loads fine with r.library('pvclust'), but when I do the following command: r.pvclust(data, method.hclust="complete", method.dist="cor

Re: [Rpy] Error loading bioconductor affy library..

2009-09-11 Thread Laurent Gautier
It might not be an answer to your exact problem, but it appears to work with rpy2 (packaged for opensuse). >>> from ryp2.robjects import r >>> r.library("affy") rpy2-2.1.x-dev is introducing a Python package-like approach: >>> from rpy2.robjects.packages import importr >>> affy = importr(

Re: [Rpy] rpy syntax error...

2009-09-11 Thread Peter
On Fri, Sep 11, 2009 at 5:18 PM, Nick Schurch wrote: > Dear Rpythoners, > > I'm having a problem using an R package called 'pvclust' from python. I have > rpy installed and things look like they are fine. The pvclust package loads > fine with r.library('pvclust'), but when I do the following comma