解决以下问题的干净方法是什么?我想用 do.call 绑定一个动物园对象列表。
>> zz <- list( zoo(1:10,1:10), zoo(101:110,1:10), zoo(201:210,1:10) )
>> names(zz)<-c('test','bar','foo')
>> do.call(cbind,zz)
> test bar foo
> 1 1 101 201
> 2 2 102 202
> 3 3 103 203
> 4 4 104 204
> 5 5 105 205
> 6 6 106 206
> 7 7 107 207
> 8 8 108 208
> 9 9 109 209
> 10 10 110 210
>> names(zz)<-c('test','all','foo')
>> do.call(cbind,zz)
> test foo
> 1 1 201
> 2 2 202
> 3 3 203
> 4 4 204
> 5 5 205
> 6 6 206
> 7 7 207
> 8 8 208
> 9 9 209
> 10 10 210
因为 'all' 是 cbind.zoo 的参数之一的名称:
R> args(cbind.zoo)
function (..., all = TRUE, fill = NA, suffixes = NULL, drop = FALSE)
NULL
do.call 构造一个调用,有点像:
R> cbind(test=zz$test, all=zz$all, foo=zz$foo)
同样的事情也会发生在名为“fill”、“suffixes”或“drop”的列表元素上。