当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R agriculture 欧盟农业劳动力


R语言 agriculture 位于 cluster 包(package)。

说明

1993 年欧盟各国家的人均国民生产总值 (GNP) 和农业人口百分比。

用法

data(agriculture)

格式

包含 2 个变量 12 个观测值的 DataFrame :

[ , 1] x numeric 人均国民生产总值
[,2] y numeric 农业百分比

DataFrame 的行名称表示国家/地区。

细节

数据似乎显示两个集群,“more agricultural” 集群由希腊、葡萄牙、西班牙和爱尔兰组成。

例子

data(agriculture)

## Compute the dissimilarities using Euclidean metric and without
## standardization
daisy(agriculture, metric = "euclidean", stand = FALSE)

## 2nd plot is similar to Figure 3 in Struyf et al (1996)
plot(pam(agriculture, 2))

## Plot similar to Figure 7 in Struyf et al (1996)
## Not run: plot(agnes(agriculture), ask = TRUE)


## Plot similar to Figure 8 in Struyf et al (1996)
## Not run: plot(diana(agriculture), ask = TRUE)

来源

欧盟统计局(欧洲统计局,1994 年):Cijfers en feiten:Een statistisch portret van de Europese Unie。

参考

see those in agnes.

也可以看看

agnesdaisydiana

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 European Union Agricultural Workforces。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。