R语言
identify.hclust
位于 stats
包(package)。 说明
identify.hclust
在按下(第一个)鼠标按钮时读取图形指针的位置。然后,它在指针的垂直位置处剪切树,并突出显示包含指针的水平位置的簇。可选地,将函数应用于簇中包含的数据点的索引。
用法
## S3 method for class 'hclust'
identify(x, FUN = NULL, N = 20, MAXCLUSTER = 20, DEV.FUN = NULL,
...)
参数
x |
|
FUN |
(可选)应用于集群中数据点的索引号的函数(请参阅下面的“详细信息”)。 |
N |
要识别的最大簇数。 |
MAXCLUSTER |
切割可以产生的最大簇数(限制指针的有效垂直范围)。 |
DEV.FUN |
(可选)整数标量。如果指定,则在应用 |
... |
|
细节
默认情况下,可以使用鼠标识别簇,并返回相应数据点索引的 invisible
列表。
如果 FUN
不是 NULL
,则数据点的索引向量将作为第一个参数传递给此函数,请参阅下面的示例。可以使用 DEV.FUN
指定 FUN
的活动图形设备。
按除第一个以外的任何鼠标按钮即可终止识别过程,另请参阅identify
。
值
数据点索引向量列表或 FUN
返回值列表。
例子
## Not run:
require(graphics)
hca <- hclust(dist(USArrests))
plot(hca)
(x <- identify(hca)) ## Terminate with 2nd mouse button !!
hci <- hclust(dist(iris[,1:4]))
plot(hci)
identify(hci, function(k) print(table(iris[k,5])))
# open a new device (one for dendrogram, one for bars):
dev.new() # << make that narrow (& small)
# and *beside* 1st one
nD <- dev.cur() # to be for the barplot
dev.set(dev.prev()) # old one for dendrogram
plot(hci)
## select subtrees in dendrogram and "see" the species distribution:
identify(hci, function(k) barplot(table(iris[k,5]), col = 2:4), DEV.FUN = nD)
## End(Not run)
也可以看看
相关用法
- R influence.measures 回归删除诊断
- R isoreg 等张/单调回归
- R interaction.plot 双向交互作用图
- R integrate 一维函数的积分
- R is.empty.model 测试模型的公式是否为空
- R stlmethods STL 对象的方法
- R medpolish 矩阵的中值波兰(稳健双向分解)
- R naprint 调整缺失值
- R summary.nls 总结非线性最小二乘模型拟合
- R summary.manova 多元方差分析的汇总方法
- R formula 模型公式
- R nls.control 控制 nls 中的迭代
- R aggregate 计算数据子集的汇总统计
- R deriv 简单表达式的符号和算法导数
- R kruskal.test Kruskal-Wallis 秩和检验
- R quade.test 四方测试
- R decompose 移动平均线的经典季节性分解
- R plot.stepfun 绘制阶跃函数
- R alias 查找模型中的别名(依赖项)
- R qqnorm 分位数-分位数图
- R eff.aovlist 多层方差分析的计算效率
- R pairwise.t.test 成对 t 检验
- R loglin 拟合对数线性模型
- R predict.smooth.spline 通过平滑样条拟合进行预测
- R bartlett.test 方差齐性的 Bartlett 检验
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Identify Clusters in a Dendrogram。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。