show_tree {BCT} | R Documentation |
Plots a tree depicting a model with the given set of contexts.
show_tree(s)
s |
vector containing the contexts of the leaves of the desired tree. |
plot of the desired tree model.
# Construct an example vector:
r <- c("a", "ab", "aab", "b", "ba")
show_tree(r)
# If the input contains digits:
q <- c(11,1,0)
show_tree(q)