R語言
order.dendrogram
位於 stats
包(package)。 說明
這些函數返回樹狀圖中葉子的順序(索引)或"label"
屬性。然後,這些索引可用於訪問任何附加數據的適當組件。
用法
order.dendrogram(x)
## S3 method for class 'dendrogram'
labels(object, ...)
參數
x, object |
樹狀圖(參見 |
... |
附加論點 |
細節
按從左到右的順序檢索葉子的索引或標簽。
值
返回長度等於樹狀圖中葉子數量的向量。從 r <- order.dendrogram()
開始,每個元素都是原始數據的索引(從中計算樹狀圖)。
例子
set.seed(123)
x <- rnorm(10)
hc <- hclust(dist(x))
hc$order
dd <- as.dendrogram(hc)
order.dendrogram(dd) ## the same :
stopifnot(hc$order == order.dendrogram(dd))
d2 <- as.dendrogram(hclust(dist(USArrests)))
labels(d2) ## in this case the same as
stopifnot(identical(labels(d2),
rownames(USArrests)[order.dendrogram(d2)]))
作者
R. Gentleman (order.dendrogram
) and Martin Maechler
(labels.dendrogram
).
也可以看看
相關用法
- R optim 通用優化
- R oneway.test 測試單向布局中的均值相等
- R optimize 一維優化
- R offset 在模型公式中包含偏移量
- 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 influence.measures 回歸刪除診斷
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Ordering or Labels of the Leaves in a Dendrogram。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。