【发布时间】:2012-05-10 11:25:44
【问题描述】:
我正在尝试使用 'by' 调用的输出,该调用很容易转换为列表...但列表有时仍然无法解决我的问题
a = list('1'=c(19,3,4,5), '4'=c(3,5,3,2,1,6), '8'=c(1,3))
for (i in c(1,8,4)){
# would like to do something like this
a[["i"]] # calling list elements by name rather than #
}
#ideally the output would be something like this
>19,3,4,5
>1,3
>3,5,3,2,1,6
【问题讨论】: