我正在阅读foreach
r 中包的文档,并且能够理解如何.combine
在c
,rbind
和cbind
. 但是文档说,.combine
如果要使用此函数进行组合,也可以将函数的名称传递给语句中的。尝试访问我正在组合的此函数中每个 foreach 的各个元素时,我无法理解输出。(让我将此函数称为mycombinefunc
)
这是我尝试过的。我不明白为什么在 foreach 语句的输出中会打印两次输出。
> mycombinefunc= function(...){mylist = list(...);print(mylist)}
> foreach(i=1:2, .combine='mycombinefunc') %do% {c(1:5)}
[[1]]
[1] 1 2 3 4 5
[[2]]
[1] 1 2 3 4 5
[[1]]
[1] 1 2 3 4 5
[[2]]
[1] 1 2 3 4 5
#just calling the function directly to show what the expected output for one iteration of the foreach loop looks like. I would have expected that the above function call would produce two copies of the below output
> mycombinefunc(c(1:5))
[[1]]
[1] 1 2 3 4 5