text.tree(tree)
text.tree()所属R语言包:tree
Annotate a Tree Plot
注释一个树图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Add text to a tree plot.
将文本添加到树图。
用法----------Usage----------
## S3 method for class 'tree'
text(x, splits = TRUE, label = "yval", all = FALSE,
pretty = NULL, digits = getOption("digits") - 3,
adj = par("adj"), xpd = TRUE, ...)
参数----------Arguments----------
参数:x
an object of class "tree"
一个对象的类"tree"
参数:splits
logical. If TRUE the splits are labelled
逻辑。如果TRUE分割标记
参数:label
The name of column in the frame component of x, to be used to label the nodes. Can be NULL to suppress node-labelling
的名称列在frame分量x,被用来标注节点。可NULL压制节点标签
参数: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 cex and font.
图形参数如cex和font。
Details
详细信息----------Details----------
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, .... If pretty is a positive integer, abbreviate is applied to the labels with that value for its argument minlength.
如果pretty = 0然后水平的因子分解属性的名称是用来保持不变。如果pretty = NULL,水平a,b,......如果pretty是一个正整数,abbreviate被施加到标签与值参数minlength。
If the lettering is vertical (par srt = 90) and adj is not supplied it is adjusted appropriately.
如果字符是垂直的(面值srt = 90)adj不提供适当的调整。
值----------Value----------
None.
无。
(作者)----------Author(s)----------
B. D. Ripley
参见----------See Also----------
plot.tree
plot.tree
实例----------Examples----------
ir.tr <- tree(Species ~., iris)
plot(ir.tr)
text(ir.tr)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|