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 following but it doesn't work

import rpy2.robjects as robjects
a = robjects.r('list()')
b = robjects.IntVector([1,2])
a[0] = b
IndexError: Index out of range.
a[1] = b
IndexError: Index out of range.
aa = a.__add__(b) # But this makes a list out of the vector
aa.r_repr()
'list(1L, 2L)'
# We wanted something like the following instead:
aaa = robjects.r('list(c(1,2))')
aaa.r_repr()
'list(c(1, 2))'
link|improve this question

78% accept rate
feedback

2 Answers

up vote 2 down vote accepted

If you want to use R's "[[<-" operator, you'll have to call the method rx2() (see [assigning, R-style][1]).

In rpy2-2.2.0dev, you can do a.rx2[1] = b.

[1]: http://rpy.sourceforge.net/rpy2/doc-2.2/html/vector.html#assigning-r-style assigning, R-style

link|improve this answer
I'm not sure how that would help in appending to a list. – highBandWidth Mar 11 '11 at 2:08
Being advertised as the equivalent of the R code you are trying to emulate, it should... – lgautier Mar 15 '11 at 10:17
a.rx2(1) = b does not work, as you can't assign to a function call. – highBandWidth Mar 15 '11 at 18:30
The documentation the link points to suggests something like a.rx2[1] = b – lgautier Mar 16 '11 at 7:36
1  
I have Python 2.6.6, rpy2 2.1.9 (latest on macports). That must be it. – highBandWidth Mar 16 '11 at 19:42
show 3 more comments
feedback

I'm not sure that you can do this with the current version of rpy2, but you can try out the rpy2.rlike.container.TaggedList class, which can act as an R list and supports appending, removing and retagging items. As far as I can tell, there must be a bug in the assignment for lists and vectors.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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