Skip to content
Prev 327542 / 398502 Next

Combine multiple random forests contained in a list

I would say that the use of Reduce in this context is bad practice.

from ?Reduce :

"Reduce uses a binary function to successively combine the elements of
a given vector and a possibly given initial value."

combine() is obviously not a binary function. do.call() seems to be
THE appropriate idiom.

-- Bert
On Fri, Jul 26, 2013 at 9:26 PM, arun <smartpink111 at yahoo.com> wrote: