| text.tree | R Documentation |
Add text to a tree plot.
## S3 method for class 'tree'
text(x, splits = TRUE, label = "yval", all = FALSE,
pretty = NULL, digits = getOption("digits") - 3,
adj = par("adj"), xpd = TRUE, ...)
x |
an object of class |
splits |
logical. If |
label |
The name of column in the |
all |
logical. By default, only the leaves are labelled, but if true interior nodes are also labelled. |
pretty |
the manipulation used for split labels involving attributes. See Details. |
digits |
significant digits for numerical labels. |
adj, xpd, ... |
graphical parameters such as |
If pretty = 0 then the level names of a factor split attributes
are used unchanged. If pretty = NULL, the levels are presented
by a, b, ... z, 0 ... 5. If
pretty is a positive integer, abbreviate is
applied to the labels with that value for its argument
minlength.
If the lettering is vertical (par srt = 90) and adj is
not supplied it is adjusted appropriately.
None.
B. D. Ripley
plot.tree
ir.tr <- tree(Species ~., iris)
plot(ir.tr)
text(ir.tr)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.