Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Python 3.1.1 on Mac OS X 10.6.2 and need an interface to R. When browsing the internet I found out about RPy. Is this the right choice?

Currently, a program in Python computes a distance matrix and, stores it in a file. I invoke R separately in an interactive way and read in the matrix for cluster analysis. In order to simplify computation one could prepare a script file for R then call it from Python and read back the results. Since I am new to Python, I would not like to go back to 2.6.

share|improve this question
3  
Unfortunately rpy, even rpy2, don't support Python 3 as far as I know. Python 3's neat, but if you need substantial third-party libraries you're better off if you stick to Python 2 for now. – Alex Martelli Apr 4 '10 at 0:30

3 Answers

up vote 19 down vote accepted

edit: Rewrite to summarize the edits that accumulated over time.

The current rpy2 release (2.3.x series) has full support for Python 3.3, while no claim is made about Python 3.0, 3.1, or 3.2. At the time of writing the next rpy2 release (under development, 2.4.x series) is only supporting Python 3.3.

History of Python 3 support:

  • rpy2-2.1.0-dev / Python 3 branch in the repository - experimental support and application for a Google Summer of Code project consisting in porting rpy2 to Python 3 (under the Python umbrella)

  • application was accepted and thanks to Google's funding support for Python 3 slowly got into the main codebase (there was a fair bit of work still to be done after the GSoC - it made it for branch version_2.2.x).

share|improve this answer
Nice, proactive answer. – gahooa Mar 31 '11 at 2:27

PypeR it's an option if you're trying to use R with recent versions of Python (like 3.1)

More info at:

http://rinpy.sourceforge.net/

share|improve this answer

I don't believe there are any available options for Python 3.1.1.

The current status of R-Python bindings:

At the moment, three options: RPy, RPy2, and RSPython.

RPy and RPy2 were developed and are maintained by the same team of developers; RPy2 is a substantial rewrite of RPy (which in turn is based on Omega hat's RSPython).

RPy is still actively maintained.

RSPython is still available but i believe is no longer actively developed. I looked a couple of months ago and the latest version i could find (0.7-1) was released in October 2006.

The most current stable version as well as the dev version (2.1 rc) of RPy2 is optimized for R version 2.10 (current stable version) and Python version 2.6 (ie, those are the versions used in development). I am not aware of any announcement by the RPy2 developers to support Python versions 3.x.

share|improve this answer
seems there is a fourth option available: PypeR [sourceforge.net/projects/rinpy/files and jstatsoft.org/v35/c02/paper] – radek Aug 2 '10 at 9:48
1  
@radek: and even a fifth one: pyRserve [ralph-heinkel.com/pyRserve/]. – lgautier Aug 4 '10 at 5:54
@lgautier: haven't seen this one.. thanks for sharing! – radek Aug 4 '10 at 8:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.