Usage
## S3 method for class 'formula':
Boruta(formula,data=.GlobalEnv,...)
## S3 method for class 'default':
Boruta(x,y,confidence=0.999,maxRuns=100,light=TRUE,doTrace=0,...)
## S3 method for class 'Boruta':
print(x,...)
Arguments
x, formula
data frame of predictors or a formula describing model to be analysed.
data
data frame containing model variables. Global environment is default.
y
response vector. Must be a factor.
confidence
confidence level. Default value should be used. Lower value may reduce computation time of test runs.
maxRuns
maximal number of randomForest runs in the final round. You may increase it to resolve attributes left Tentative
.
doTrace
0 means no tracing, 1 means printing a "." sign after each randomForest run,
2 means same as 1, plus consecutive reporting of test results.
light
if set to TRUE
, Boruta runs in standard, light mode. If set to FALSE
,
Boruta runs in more restrictive, force mode.
...
additional parameters that will be passed to randomForest
function.