當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R animals 動物的屬性


R語言 animals 位於 cluster 包(package)。

說明

該數據集考慮了 20 隻動物的 6 個二元屬性。

用法

data(animals)

格式

包含 6 個變量 20 個觀測值的 DataFrame :

[ , 1] war warm-blooded
[,2] fly 可以飛
[,3] ver vertebrate
[,4] end endangered
[,5] gro 群居
[,6] hai 有頭發

所有變量均編碼為 1 = 'no'、2 = 'yes'。

細節

該數據集對於說明單論(每次分割僅使用一個變量)層次聚類非常有用。

例子

data(animals)
apply(animals,2, table) # simple overview

ma <- mona(animals)
ma
## Plot similar to Figure 10 in Struyf et al (1996)
plot(ma)

來源

Leonard Kaufman 和 Peter J. Rousseeuw (1990):在數據中查找組(第 297 頁)。紐約:威利。

參考

see Struyf, Hubert & Rousseeuw (1996), in agnes.

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Attributes of Animals。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。