combineRP | R Documentation |
Combines two or more ensembles of rfPermute
objects into
one, combining randomForest
results, null distributions,
and re-calculating p-values.
combineRP(...)
... |
two or more objects of class |
Eric Archer eric.archer@noaa.gov
combine
data(iris)
rp1 <- rfPermute(
Species ~ ., iris, ntree = 50, norm.votes = FALSE, nrep = 100, num.cores = 1
)
rp2 <- rfPermute(
Species ~ ., iris, ntree = 50, norm.votes = FALSE, nrep = 100, num.cores = 1
)
rp3 <- rfPermute(
Species ~ ., iris, ntree = 50, norm.votes = FALSE, nrep = 100, num.cores = 1
)
rp.all <- combineRP(rp1, rp2, rp3)
rp.all
plotNull(rp.all)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.