Nothing
# $Id: prune.bagging.R,v 1.2 2002/09/12 08:59:13 hothorn Exp $
prune.classbagg <- function(tree, cp=0.01,...)
{
for(i in 1:length(tree$mtrees))
tree$mtrees[[i]]$btree <- prune( tree$mtrees[[i]]$btree, cp=cp, ...)
tree
}
prune.regbagg <- function(tree, cp=0.01,...)
{
for(i in 1:length(tree$mtrees))
tree$mtrees[[i]]$btree <- prune( tree$mtrees[[i]]$btree, cp=cp, ...)
tree
}
prune.survbagg <- function(tree, cp=0.01,...)
{
for(i in 1:length(tree$mtrees))
tree$mtrees[[i]]$btree <- prune( tree$mtrees[[i]]$btree, cp=cp, ...)
tree
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.