The rpy2 tag has no wiki summary.
5
votes
2answers
1k views
rpy2: Converting a data.frame to a numpy array
I have a data.frame in R. It contains a lot of data : gene expression levels from many (125) arrays. I'd like the data in Python, due mostly to my incompetence in R and the fact that this was supposed ...
4
votes
1answer
274 views
rpy2 convert Matrix -> DataFrame
I am having difficulty with this seemingly simple operation that I'd assume has been solved previously but I cannot find any examples.
In the R environment @data is of type DataFrame but rpy2 (2.2) ...
4
votes
2answers
144 views
Is multiprocessing with RPy safe?
Is it safe to call RPy functions in a multiprocessing environment and are there any multiprocessing issues regarding RPy that one should be aware of?
A simple example might be the following:
from ...
4
votes
3answers
1k views
Python and Rpy2: Calling plot function with options that have “.” in them
I'm just starting to learn how to use rpy2 with python. I'm able to make simple plots and such, but I've run into the problem that many options in R use ".". For example, here's an R call that ...
3
votes
1answer
96 views
What's the intention of opencpu.org compared to other approaches?
Lately I was pointed to http://opencpu.org/ . Nifty website, but after browsing for a little while I wasn't so sure where it is located in the R landscape compared to e.g. rApache or RPy2.
After ...
3
votes
1answer
119 views
import rpy quietly
My question is analogous to this one but in the context of importing R to Python via RPy. Specifically, when I run
from rpy import *
at the beginning of my python script, there is a chunk of ...
3
votes
2answers
260 views
error installing rpy2 on os x 10.6: unable to execute gcc-4.0
I am attempting to install rpy2 using pip with:
$ sudo pip install rpy2
which exits with an error:
gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -arch ppc -arch i386 -g -O2 -DNDEBUG -g ...
3
votes
1answer
202 views
RPY2: importr fails with .Renviron
Here's what should and does happen using rpy2.robjects.packages.importr for base R-packages (e.g. stats):
>>> from rpy2.robjects.packages import importr
>>> importr('stats')
...
3
votes
1answer
89 views
Has anyone used rpy2 with py2exe?
I am hoping to port some Python code that uses RPY2 to run R functions into dlls using py2exe then, ultimately, to COM objects for integration with a C# project of a collaborator.
If incorporating ...
3
votes
2answers
227 views
Adding an element (vector) to a list in rpy2
In R, I can add elements to a list easily:
mylist = list()
mylist[[1]] = c(1,2)
mylist[[2]] = c(2,3)
mylist[[length(mylist)+1]] = c(3,4)
How do I do this in rpy2? I am using rpy2 2.1.9. I tried the ...
3
votes
2answers
244 views
How do I control where an R plot is displayed, using python and rpy2?
I'm writing a program in Python. The first thing that happens is a window is displayed (I'm using wxPython) that has some buttons and text. When the user performs some actions, a plot is displayed ...
3
votes
1answer
350 views
How do I do this in python (without RPy2)
I have R code that uses RQuantlib library. In order to run it from python I am using RPy2. I know python has its own bindings for quantlib (quantlib-python). I'd like to switch from R to python ...
3
votes
1answer
313 views
rpy2 dataframe - selecting specific row
I hope this isn't a daft question, but I am basically trying to use rpy to work with a dataset to do some univariate analysis and a few multiple regression equations etc. But I'm falling at one of the ...
3
votes
5answers
5k views
How to create an empty R vector to add new items
I want to use R in Python, as provided by the module Rpy2. I notice that R has very convenient [] operations by which you can extract the specific columns or lines, how could I achieve such a function ...
3
votes
2answers
4k views
Plotting 3-tuple data points in a surface / contour plot using matplotlib
I have some surface data that is generated by an external program as XYZ values. I want to create the following graphs, using matplotlib:
Surface plot
Contour plot
Contour plot overlayed with a ...
3
votes
2answers
873 views
Converting python objects for rpy2
The following code is supposed to created a heatmap in rpy2
import numpy as np
from rpy2.robjects import r
data = np.random.random((10,10))
r.heatmap(data)
However, it results in the following ...
2
votes
2answers
121 views
Guidance in using rpy2 eval expression
I am new to both R and rpy2. I am trying to port the following example
library(MASS) # for eqscplot
data(topo, package="MASS")
topo.kr <- surf.ls(2, topo)
trsurf <- trmat(topo.kr, 0, ...
2
votes
2answers
218 views
Error installing rpy2 2.2.1 on Mac OS X 10.6.8
I am trying to install rpy2 from a downloaded source archive 'rpy2-2.2.1.tar.gz'. I have been following the installation instructions provided from the rpy2 documentation. This is what I am doing:
...
2
votes
2answers
216 views
Cast R objects into Python ones with rpy2
The question: how to cast R objects to python ones
My case: I need to use the result of cor.test() into a python routine.
correlation = robjects.r('function(x, y) cor.test(x, y)')
corr= ...
2
votes
1answer
258 views
Clearing memory used by rpy2
How can I clear objects (and the memory they occupy) created via rpy?
import rpy2.robjects as r
a = r.r('a = matrix(NA, 2000000, 50)')
del a #if I do this, there is no change in the amount of ...
2
votes
2answers
131 views
ESS and rpy2 sharing R process in Emacs
I am a fairly new user of R and have started using Emacs Speaks Statistics (ESS). I also use rpy2 (a python interface to R) where I can start an R-process in my ipython shell running in Emacs.
Is it ...
2
votes
3answers
1k views
trouble installing rpy2 on win7 (R 2.12, Python 2.5)
I'm brand new to Python (and programming in general) I come from a finance background, so please bear with me. I just started using Python (Enthought's Pylab/Scipy/Numpy) and R for statistical ...
2
votes
2answers
352 views
from CSV to ndarray, and rpy2,
I can make numpy ndarrays with rec2csv,
data = recfromcsv(dataset1, names=True)
xvars = ['exp','exp_sqr','wks','occ','ind','south','smsa','ms','union','ed','fem','blk']
y = data['lwage']
X = ...
2
votes
2answers
324 views
how to have recognized all the libraries Rpy2 R
how to have recognized all the libraries Rpy2 R.
Rpy2 not recognizing the libraries, utils, and tools.
import rpy2.robjects as robjects
R = robjects.r
>>> R['library']("utils")
RVector ...
2
votes
1answer
181 views
Mapping result of psycopg2 into dataframe for R with RPY2
With psycopg2, i get result of query in this form :
[(15002325, 24, 20, 1393, -67333094L,
38, 4, 493.48763257822799,
493.63348372593703), (15002339, 76, 20, 1393, -67333094L, 91, 3,
...
2
votes
2answers
1k views
How to Install rpy2 on Mac OS X
I am trying, so far unsuccessfully, at installing the rpy2 for python on my Mac OSX. I have tried Macports and DarwinPorts but have had no luck with import rpy2 within the python shell environment. ...
2
votes
3answers
404 views
Sorted quantile mean via Rpy
The real goal here is to find the quantile means (or sums, or median, etc.) in Python. Since I'm not a power user of Python but have used R for a while, my chosen route is via Rpy. However, I ran into ...
2
votes
3answers
572 views
Mapping python tuple and R list with rpy2?
I'm having some trouble to understand the mapping with rpy2 object and python object.
I have a function(x) which return a tuple object in python, and i want to map this tuple object with R object ...
2
votes
2answers
223 views
Python and rpy2: How do I adjust/clear a graphic during runtime?
I'm using rpy2 to do data analysis and plotting in python. It works fine except for the fact that when I draw a plot, it's window hangs around until the program terminates. Is there a way to clear the ...
1
vote
1answer
23 views
How to use !duplicate with rpy2?
I want to do the equivalent of this R script:
> csvData <- read.csv(file='/homes/ndeklein/test.csv', head=TRUE, sep='\t')
> csv = subset(csvData, !duplicated(id))
in rpy2. However, if I ...
1
vote
1answer
41 views
Why does the x-axis of my plot start at 5 instead of at the lowest point of the vector?
I'm trying to make a histogram of a vector using R. When I plot this the x-axis goes from 5 to 9 but part of the histogram is before 5 (the lowest number is 4.414002) and part of it is after 9. The ...
1
vote
2answers
65 views
Getting standard errors from regressions using rpy2
I am using rpy2 for regressions. The returned object has a list that includes coefficients, residuals, fitted values, rank of the fitted model, etc.)
However I can't find the standard errors (nor ...
1
vote
0answers
160 views
Importing Rpy with python 2.6, R2.14 and Win 7x64 error
I am trying to import rpy into python. I keep getting this error.
Traceback (most recent call last):
File "<pyshell#0>", line 1, in module
import rpy
File ...
1
vote
2answers
61 views
python rpy2 module: refresh global R environment
The documentation for rpy2 states that the robjects.r object gives access to an R global environment. Is there a way to "refresh" this global environment to its initial state?
I would like to be ...
1
vote
1answer
126 views
ggplot2 not present in rpy2 for python?
I am working with rpy2 v2.1.9 in Python3.2, I don't understand why I can't use the library ggplot2
import rpy2
from rpy2.robjects import r
r.library("ggplot2")
Here is the error message I got
...
1
vote
1answer
133 views
rpy2 plot problem
I use rpy2-2.0.8, R-2.11.1, Python-2.6.2 on Windows XP.
When I run this script, output image is filled with text message.
I suppose this message is function definition of clusplot.
[test.py]
...
1
vote
0answers
53 views
python program killed in pbs without info
I'm running a simple Python program using rpy2 in a cluster managed by pbs_torque. My problem is that the same piece of code works perfectly and other times is killed without logical reason or error ...
1
vote
1answer
104 views
Error in rpy2- No (non-missing) observations
I m working with rpy2 on Ubuntu 1104. I m following the COX file. The steps given in file are in R. I have to do same steps in python using rpy2.
I didn't get any tutorial with rpy2. I managed to ...
1
vote
2answers
60 views
Accessing functions with a dot in theior name (eg. “as.vector”) using rpy2
I am trying to access the "as.vector" R function from within Python, using rpy2. Let's say, for the sake of simplicity, that I want to do something as simple as this using rpy2 (R code):
x <- ...
1
vote
0answers
73 views
RPY2: R Graphics device stops working when clicked
I have a question related to RPY2 and the R Graphics
I've just installed python 2.6, R-2.12.2 and rpy2-2.0.8py2.6 for windows Vista 32bits and so far everything seemed to be working pretty well (In ...
1
vote
1answer
236 views
Problem setting lattice plot options using rpy2
I'm trying to create a heatmap or color-intensity plot using data from a numpy array, using rpy2 and lattice. I'm using python 2.6.2, R 2.10.1, rpy2 2.1.9, not sure which version of lattice. I've ...
1
vote
3answers
215 views
How can I suppress the output to console when importing packages in RPy2 in Python?
Whenever I run a script importing packages with import in RPy2 in Python, there are always some extra lines popping up in the console. I pasted in an example below. How can I suppress that behavior?
...
1
vote
1answer
306 views
rpy2 installation on Ubuntu
I'm pretty new to Linux and I'm having some serious trouble installing Rpy2. I had an older versions of Rpy2 installed by the synaptic package manager, but I needed an updated version and removed it ...
1
vote
0answers
233 views
convert numpy array to Matrix rpy2, Kmeans
I have a numpy 2D array self.sub
and i want to use it in rpy2 kmeans.
k = robjects.r.kmeans(self.sub,2,20)
i always get the following error:
valueError: nothing can be done for the type at the ...
1
vote
2answers
247 views
passing R function arguments in rpy
I have the following two lines of code that both run fine in both R and Python (via Rpy):
[R] rcut = cut(vector, brks)
[Python] rcut = r.cut(vector, brks)
However, if I want to add the argument of ...
1
vote
3answers
853 views
ggplot2 hell with rpy2-2.0.7 + python 2.6 + r 2.11 (windows 7)
i am using rpy2-2.0.7 (i need this to work with windows 7, and compiling the binaries for the newer rpy2 versions is a mess) to push a two-column dataframe into r, create a few layers in ggplot2, and ...
1
vote
4answers
888 views
issue running a program (R) in Python to perform an operation (execute a script)
I'm tying to execute an R script from python, ideally displaying and saving the results. Using rpy2 has been a bit of a struggle, so I thought I'd just call R directly. I have a feeling that I'll ...
1
vote
2answers
351 views
Python Rpy R data processing optimization
I am writing a data processing program in Python and R, bridged with Rpy2.
Input data being binary, I use Python to read data out and pass them to R, then collect results to output.
Data are ...
0
votes
1answer
11 views
Rpy2 'show' not found on httpd using wsgi
Everything works fine on development server. However, the following error was showing when I moved the project to the production server running httpd and wsgi.
TemplateSyntaxError at /
Caught ...
0
votes
0answers
12 views
using rpy in a django app throws RPy_Exception: R Function “get” not found
Here's the traceback(copy pasted):
Traceback Switch to copy-and-paste view
/usr/local/lib/python2.6/dist-packages/django/core/handlers/base.py in get_response
response = ...