vote up 1 vote down star

Hello,

After installing RPy2 from

http://rpy.sourceforge.net/rpy2.html

I'm trying to use it in Python 2.6 IDLE but I'm getting this error:

>>> import rpy2.robjects as robjects
>>> robjects.r['pi']

<RVector - Python:0x0121D8F0 / R:0x022A1760>

What I'm doing wrong?

flag

I'm usign R 2.9.1 – jrara Oct 30 at 12:24
I don't use IDLE but if that was directly in the interpreter, you'd be doing nothing wrong (where's the exception?). What did you expect? – kaleissin Oct 30 at 12:36
1  
(1) Do not comment on your own questions. Update your question to include the "R 2.9.1" facts. (2) what makes you think that's an "error"? It looks like an RVector object. – S.Lott Oct 30 at 12:45

3 Answers

vote up 3 vote down check

Have you tried looking at the vector that's returned?

 >>> pi = robjects.r['pi']
 >>> pi[0]
 3.14159265358979
link|flag
vote up 3 vote down

To expand on Shane's answer. rpy2 uses the following Python objects to represent the basic R types:

  • RVector: R scalars and vectors, R Lists are represented as RVectors with names, see below
  • RArray: an R matrix, essentially the RVector with a dimension
  • RDataFrame: an R data.frame

To coerce back to basic Python types look here.

As an example, I use this to convert an R List to a python dict:

rList = ro.r('''list(name1=1,name2=c(1,2,3))''')
pyDict = {}
for name,value in zip([i for i in rList.getnames()],[i for i in rList]):
    if len(value) == 1: pyDict[name] = value[0]
    else: pyDict[name] = [i for i in value]
link|flag
vote up 1 vote down

In the Python interactive interpreter if an expression returns a value then that value is automatically printed. For example if you create a dictionary and extract a value from it the value is automatically printed, but if this was in an executing script this would not be the case. Look at the following simple example this is not an error but simply python printing the result of the expression:

>>> mymap = {"a":23}
>>> mymap["a"]
23

The same code in a python script would produce no output at all.

In your code you are accessing a map like structure with the code:

>>> robjects.r['pi']

This is returning some R2Py object for which the default string representation is: <RVector - Python:0x0121D8F0 / R:0x022A1760>

If you changed the code to something like:

pi = robjects.r['pi']

you would see no output but the result of the call (a vector) will be assigned to the variable pi and be available for you to use.

Looking at the R2Py documentation It seems many of the objects are by default printed as a type in <> brackets and some memory address information.

link|flag

Your Answer

Get an OpenID
or

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