combineRP {rfPermute} | R Documentation |
Combine rfPermute objects
Description
Combines two or more ensembles of rfPermute
objects into
one, combining randomForest
results, null distributions,
and re-calculating p-values.
Usage
combineRP(...)
Arguments
... |
two or more objects of class |
Author(s)
Eric Archer eric.archer@noaa.gov
See Also
Examples
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)
[Package rfPermute version 2.5.2 Index]