Nothing
## Comparison data
source('known_output/parttree_ctree_classification.R')
## partykit
if (require(partykit)) {
ct = ctree(Species ~ Petal.Length + Petal.Width,
control = ctree_control(maxdepth = 2),
data = iris)
ct = parttree(ct)
row.names(ct) = NULL
attr(ct, "parttree") = NULL
class(ct) = "data.frame"
expect_equal(ct, pt_ct_cl_known)
}
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.