| CART | R Documentation |
This function builds a classification model using CART.
CART(
train,
labels,
minsplit = 1,
maxdepth = log2(length(labels)),
cp = NULL,
xval = 10,
tune = FALSE,
methodparameters = NULL,
graph = FALSE,
seed = NULL,
...
)
train |
The training set (description), as a |
labels |
Class labels of the training set ( |
minsplit |
The minimum leaf size during the learning. |
maxdepth |
Set the maximum depth of any node of the final tree, with the root node counted as depth 0. |
cp |
The complexity parameter of the tree. Cross-validation is used to determine optimal cp if NULL. |
xval |
The number of cross-validation folds used to choose |
tune |
If true, the function returns parameters instead of a classification model. |
methodparameters |
Present for interface consistency with |
graph |
Present for interface consistency with |
seed |
A specified seed for random number generation, so that two runs on the same data give the same model. Every learning method accepts it, so that it can be set the same way whatever the method; the deterministic ones simply have nothing to draw and give the same model with or without it. |
... |
Other parameters. |
The classification model.
cartdepth, cartinfo, cartleafs, cartnodes, cartplot, rpart
require (datasets)
data (iris)
CART (iris [, -5], iris [, 5])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.