Learn R Programming

emil (version 1.1-6)

emil.fit.cforest: Fit conditional inference forest

Description

A cforest is a random forest based on conditional inference trees, using the implementation in the party package. These trees can be used for classification, regression or survival analysis, but only the survival part has been properly tested so far.

Usage

emil.fit.cforest(x, y, formula = y ~ ., ctrl.fun = cforest_unbiased, ...)

Arguments

x
Dataset, observations as rows and descriptors as columns.
y
Responses.
formula
Formula linking response to descriptors.
ctrl.fun
Which control function to use, see cforest_control.
...
Sent to the function specified by ctrl.fun.

Value

Details

The parameters to cforest are set using a cforest_control object. You should read the documentation as the default values are chosen for technical reasons, not predictive performance! Pay special attention to mtry which is set very low by default.

See Also

emil, emil.predict.cforest, modeling.procedure