plot.sk_partition_tree | R Documentation |
S3method for plotting the resulting tree formed by the partitioning algorithms in the SK4FGA package.
## S3 method for class 'sk_partition_tree' plot(x, ...)
x |
Output from the function "partition()" |
... |
Extra details for the plot. Unused. |
Plot of the decision tree that is formed by the sk_partition_tree object returned by partition and partition.multi.
data = generate_indices() part = partition(data) plot.sk_partition_tree(part) data(glass) data.multi = prepare_data(glass, 1)[1:3] part = partition.multi(data.multi) plot(part)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.