plot.TWIX(TWIX)
plot.TWIX()所属R语言包:TWIX
Plotting method for TWIX objects
TWIX对象的绘制方法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plot an TWIX or bootTWIX object generated by
绘制一个TWIX或bootTWIX生成的对象
用法----------Usage----------
## S3 method for class 'TWIX'
plot(x, sq = 1:length(x$trees), type = "deviance",
size = 3, freq = TRUE, breaks = "Sturges",
pch = par("pch"), ...)
参数----------Arguments----------
参数:x
an object of class TWIX.
对象类TWIX。
参数:sq
Integer vector giving the number of trees to be plotted.
整数向量,树木的数量要绘制。
参数:type
one of "deviance", "ccr","d&c".
"deviance","ccr","d&c"之一。
参数:size
value for largest circle (cex).
值最大的圆(cex)。
参数:freq
logical. Should the frequence or density be plotted.
逻辑。绘制的频率和密度。
参数:breaks
see histogram.
看到直方图。
参数:pch
a vector of plotting characters or symbols.
绘制的字符或符号的向量。
参数:...
graphical parameters can be given as arguments to 'plot'.
图形参数可被指定为参数的图“。
Details
详细信息----------Details----------
If type = "deviance":<br> the training deviance vs. test deviance will be plotted.<br> If type = "ccr":<br> the correct classification rate(CCR) for training data vs. the CCR for test data.<br> If type = "d&c":<br> the deviance vs. CCR for test data.
如果type = "deviance":<BR>培训越轨行为与测试越轨行为将被绘制。<br>如果type = "ccr":<BR>的分类正确率(CCR)的CCR训练数据与测试数据。<br>如果type = "d&c":<BR>的偏差与CCR的测试数据。
参见----------See Also----------
TWIX, get.tree
TWIX,get.tree
实例----------Examples----------
data(olives)
### train and test data[##的训练和测试数据]
set.seed(123)
i <- sample(572,150)
ic <- setdiff(1:572,i)
training <- olives[ic,]
test <- olives[i,]
TM1 <- TWIX(Region~.,data=training[,1:9],test.data=test,
topN=c(5,3),method="local")
plot(TM1)
plot(TM1,type="ccr")
plot(TM1,type="d&c")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|