boruta | R Documentation |
Grows a series of SEM Forests following the boruta algorithm to determine feature importance as moderators of the underlying model.
boruta(
model,
data,
control = NULL,
predictors = NULL,
maxRuns = 30,
pAdjMethod = "none",
alpha = 0.05,
verbose = FALSE,
quant = 1,
...
)
model |
A template SEM. Same as in |
data |
A dataframe to boruta on. Same as in |
control |
A semforest control object to set forest parameters. |
predictors |
An optional list of covariates. See semtree code example. |
maxRuns |
Maximum number of boruta search cycles |
pAdjMethod |
A value from stats::p.adjust.methods defining a multiple testing correction method |
alpha |
p-value cutoff for decisionmaking. Default .05 |
verbose |
Verbosity level for boruta processing similar to the same argument in semtree.control and semforest.control |
... |
Optional parameters to undefined subfunctions |
A vim object with several elements that need work. Of particular note, '$importance' carries mean importance; '$decision' denotes Accepted/Rejected/Tentative; '$impHistory' has the entire varimp history; and '$details' has exit values for each parameter.
Priyanka Paul, Timothy R. Brick, Andreas Brandmaier
semtree
semforest
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.