plotDistances(clst)
plotDistances()所属R语言包:clst
Visualize results of link{findThreshold}
可视化的链接{findThreshold}结果
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The functions plotDistances and plotMutinfo are used to visualize the distance threshold calculated by findThreshold in the context of pairwise distances among objects in the reference set.
职能plotDistances和plotMutinfo用于可视距离阈值计算findThreshold参考集对象之间的成对距离的情况下。
用法----------Usage----------
plotDistances(distances, D = NA, interval = NA,
ylab = "distances", ...)
plotMutinfo(breaks, D = NA, interval = NA,
xlab = "distance", ylab = "mutual information", ...)
参数----------Arguments----------
参数:distances
The $distances element of the output value of findThreshold
$distances元素的的findThreshold输出值
参数:breaks
The $breaks element of the output value of findThreshold
$breaks元素的的findThreshold输出值
参数:D
The distance threshold
距离阈值
参数:interval
The range of values over which candidiate values of PMMI are evaluated.
值的范围超过PMMI的candidiate的价值进行评估。
参数:xlab
Label the x axis of the plot.
标示x轴的图。
参数:ylab
Label the y axis of the plot.
标签图Y轴。
参数:...
Additional arguments are passed to bwplot (plotDistances) or xyplot </table>
额外的参数传递给bwplot(plotDistances)xyplot</表>
Details
详情----------Details----------
plotDistances produces a box-and-whisker plot contrasting within- and between-group distances. plotMutinfo produces a plot of cutpoints vs mutual information scores.
plotDistances产生一个方块和晶须图和组间的距离内形成对比。 plotMutinfo产生的切点与互信息分数的图。
值----------Value----------
Returns a lattice grid object.
返回格之格对象。
作者(S)----------Author(s)----------
Noah Hoffman
参见----------See Also----------
findThreshold
findThreshold
举例----------Examples----------
data(iris)
dmat <- as.matrix(dist(iris[,1:4], method="euclidean"))
groups <- iris$Species
thresh <- findThreshold(dmat, groups)
do.call(plotDistances, thresh)
do.call(plotMutinfo, thresh)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|