Description Usage Arguments Details Value Methods (by class)
buildEnsemble
builds an ensemble from ExprsModel
or
ExprsPipeline
objects. See Details.
1 2 3 4 5 6 7 8 | buildEnsemble(object, ...)
## S4 method for signature 'ExprsModel'
buildEnsemble(object, ...)
## S4 method for signature 'ExprsPipeline'
buildEnsemble(object, colBy = 0, how = 0,
gate = 0, top = 0)
|
object |
An |
... |
Additional |
colBy |
A character vector or string. Specifies column(s) to use when filtering by model performance. Listing multiple columns will result in a filter based on the product all listed columns. |
how |
A numeric scalar. Arguments between 0 and 1 will impose
a threshold or ceiling filter, respectively, based on the raw value of
|
gate |
A numeric scalar. Arguments between 0 and 1 will impose
a threshold or ceiling filter, respectively, based on the raw value of
|
top |
A numeric scalar. Determines the top N models based on
|
This function can combine any number of model objects into an ensemble.
These models do not necessarily have to derive from the same build
method. In this way, it works like conjoin
.
This function can also build an ensemble from pipeline objects. It does
this by calling pipeFilter
, then joining the remaining models
into an ensemble. As an adjunct to this method, consider first combining
multiple pipeline objects with conjoin
.
An ExprsEnsemble-class
object.
ExprsModel
: Method to build ensemble from ExprsModel
objects.
ExprsPipeline
: Method to build ensemble from ExprsPipeline
objects.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.