powered by
Runs a K-fold cross-validation experiment to find the deviance or number of misclassifications as a function of the cost-complexity parameter k.
k
cv.tree(object, rand, FUN = prune.tree, K = 10, ...)
A copy of FUN applied to object, with component
FUN
object
dev replaced by the cross-validated results from the sum of the dev components of each fit.
dev
An object of class "tree".
"tree"
Optionally an integer vector of the length the number of cases used to create object, assigning the cases to different groups for cross-validation.
The function to do the pruning.
The number of folds of the cross-validation.
Additional arguments to FUN.
B. D. Ripley
tree, prune.tree
tree
prune.tree
data(cpus, package="MASS") cpus.ltr <- tree(log10(perf) ~ syct + mmin + mmax + cach + chmin + chmax, data=cpus) cv.tree(cpus.ltr, , prune.tree)
Run the code above in your browser using DataLab