Displaying decision and regression trees
The method display prints the tree models returned by CoreModel()
function. Depending of parameter format the output is prepared for either screen or in dot format.
## S3 method for class 'CoreModel'
display(x, format=c("screen","dot"))x |
The model structure as returned by |
format |
The type of output, i.e., prepared for screen display or in dot language |
The tree based models returned by function CoreModel are visualized.
Only tree based models supported, including the trees which include other prediction models in their leaves.
Tree based models available are decision trees (obtained by using parameter model="tree" in CoreModel),
and regression trees (with model="regTree").
The output in dot language can be used with graphViz visualization software to create model visualization in various formats.
The method invisibly returns a printed character vector.
Marko Robnik-Sikonja
# decision tree dataset <- CO2 md <- CoreModel(Plant ~ ., dataset, model="tree") display(md) destroyModels(md) #clean up # regression tree dataset <- CO2 mdr <- CoreModel(uptake ~ ., dataset, model="regTree") display(mdr, format="dot") destroyModels(mdr) # clean up
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.