STUMP {fdm2id} | R Documentation |
Classification using one-level decision tree
Description
This function builds a classification model using CART with maxdepth = 1.
Usage
STUMP(train, labels, randomvar = TRUE, tune = FALSE, ...)
Arguments
train |
The training set (description), as a |
labels |
Class labels of the training set ( |
randomvar |
If true, the model uses a random variable. |
tune |
If true, the function returns paramters instead of a classification model. |
... |
Other parameters. |
Value
The classification model.
See Also
Examples
require (datasets)
data (iris)
STUMP (iris [, -5], iris [, 5])
[Package fdm2id version 0.9.9 Index]