Skip to content
Prev 76950 / 398502 Next

Re-evaluating the tree in the random forest

I'm not sure what you want to do exactly, but I suspect you can use
predict().
OOB stands for `Out-of-bag'.  Read up on random forests (e.g., the article
in R News) to learn about it.  Those numbers are estimated error rates.  The
`OOB' column is across all data, while the others are for the classes.

Andy