Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 R 中有一个列表,看起来像 mylist$a、mylist$b、mylist$c、...、mylist$z。有没有一种更简单的方法可以将列表中的所有这些字段组合成一个变量,而不是输入类似的命令cbind(mylist$a,mylist$b,...,mylist$z)?
cbind(mylist$a,mylist$b,...,mylist$z)
PS 所有子字段具有相同的维度。
do.call() 用第二个参数中的所有元素调用它的第一个参数:
do.call(cbind, mylist)