Random Forest Rborist method

Rborist has less features, but is a faster method than random forest.

Random Forests usually have same or better accuracy than single decision trees, since they have more flexibility in their conditional probability. However it depends on the problem.

Local Weighted Regression (loess), degree = 1 (linear):

The loess technique applies smoothing to the data, searching for the best estimate, in the presence of uncertainty. It applies the Tukey tri-weight density to assign weights to the kernel.
With degree 1, the technique fits the estimates as local lines.

Ensembles

Ensembles combine the results of different algorithms, thus improving the final result of the predictions. We compute new class probabilities by taking the average of the class probabilities provided by different techniques.

We will test out 10 of the most common machine learning models, from which 6 we already discussed:

For simplicity, we will use all default parameters to train their models.