prune.SDTree | R Documentation |
Removes all nodes that did not improve the loss by more than cp times the initial loss. Either by themselves or by one of their successors. Note that the tree is pruned in place. If you intend to keep the original tree, make a copy of it before pruning.
## S3 method for class 'SDTree'
prune(object, cp, ...)
object |
an SDTree object |
cp |
Complexity parameter, the higher the value the more nodes are pruned. |
... |
Further arguments passed to or from other methods. |
A pruned SDTree object
Markus Ulmer
copy
set.seed(1)
X <- matrix(rnorm(10 * 20), nrow = 10)
Y <- rnorm(10)
tree <- SDTree(x = X, y = Y)
pruned_tree <- prune(copy(tree), 0.2)
tree
pruned_tree
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.