我需要从列表的特定子列表创建数据框。我知道这个特定子列表中的数据结构是不变的。对于一个列表,我发现 do.call() 可以解决问题:
lst<-list(l1="aa", l2="ab", l3="ac")
fun.sublst1<-function(n) {
a<-c("a",1,n)
return(a)
}
lstoflst<-lapply(lst, fun.sublst1)
do.call(rbind,lstoflst) # create a data frame from a list
但是,如果我有一个包含列表的列表并且我想遍历特定的子列表,我将无法使用 do.call(rbind,lstolflst$A) 创建数据框。
# section list of list
fun.sublst2<-function(n) {
a<-c("a",1,n)
b<-c("b",2)
return(list(A=a,B=b))
}
lstoflst<-lapply(lst, fun.sublst2)
# result should create a dataframe consisting of all sublists $A
t(cbind(lstoflst$l1$A,lstoflst$l2$A,lstoflst$l3$A))
使用笨拙的代码,它看起来像这样。
dat<-t(as.data.frame(lstoflst[[1]][[1]]))
for(i in 2:length(lstoflst)) {
dat<-rbind(dat,t(lstoflst[[i]][[1]]))
}
有没有一种优雅的方法可以用基础 R 来做到这一点?我猜 do.call(rbind,lstoflst, ???) 与其他一些参数会做。我想我需要传递索引或索引函数。有什么帮助吗?
我搜索了,但我的搜索词没有运气。应该早就解决了。无论如何,希望你能指导我。谢谢
编辑:更改了标题,因为我的示例仅生成矩阵。