tile.tree(tree)
tile.tree()所属R语言包:tree
Add Class Barcharts to a Classification Tree Plot
添加类Barcharts一个分类树图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This computes the frequencies of level of var for cases reaching each leaf of the tree, and plots barcharts of the set of frequencies underneath each leaf.
计算的频率水平var的情况下达到每一片叶子的树,和图的设置的频率下每片叶子的barcharts。
用法----------Usage----------
tile.tree(tree, var, screen.arg = ascr + 1, axes = TRUE)
参数----------Arguments----------
参数:tree
fitted object of class "tree".
合身的对象类"tree"。
参数:var
a factor variable to be displayed: by default it is the response factor of the tree.
要显示的一个因素变量:默认情况下,它是树的响应因子。
参数:screen.arg
The screen to be used: default the next after the currently active screen.
使用的画面:默认情况下,当前处于活动状态的屏幕。
参数:axes
logical flag for drawing of axes for the barcharts.
画轴的barcharts的逻辑标志。
值----------Value----------
A matrix of counts of categories (rows) for each leaf (columns). The principal effect is the plot.
分类计数的矩阵(行)为每片叶子(列)。的主要作用是图。
(作者)----------Author(s)----------
B. D. Ripley
参见----------See Also----------
tree.screens
实例----------Examples----------
data(fgl, package="MASS")
fgl.tr <- tree(type ~ ., fgl)
summary(fgl.tr)
plot(fgl.tr); text(fgl.tr, all=TRUE, cex=0.5)
fgl.tr1 <- snip.tree(fgl.tr, node=c(108, 31, 26))
tree.screens()
plot(fgl.tr1)
text(fgl.tr1)
tile.tree(fgl.tr1, fgl$type)
close.screen(all = TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|