在R中,我可以轻松地将元素添加到列表中:
mylist = list()
mylist[[1]] = c(1,2)
mylist[[2]] = c(2,3)
mylist[[length(mylist)+1]] = c(3,4)
我如何在rpy2中执行此操作?我正在使用rpy2 2.1.9。我尝试了以下但是它不起作用
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))'
答案 0 :(得分:4)
如果你想使用R的“[[< - ”运算符,你必须调用方法rx2() (见[assigning,R-style] [1])。
在rpy2-2.2.0dev中,您可以执行a.rx2[1] = b
。
[1]:http://rpy.sourceforge.net/rpy2/doc-2.2/html/vector.html#assigning-r-style分配,R风格
答案 1 :(得分:1)
我不确定您是否可以使用当前版本的rpy2执行此操作,但您可以尝试使用rpy2.rlike.container.TaggedList类,该类可以充当R列表并支持追加,删除和重新生成项目。据我所知,列表和向量的分配必定存在错误。