无法找到功能" clusplot"

时间:2014-12-19 11:32:29

标签: r cluster-analysis

这是我的指示:clusplot(pa,as.factor(kmeans(pa,3)$cluster)) pa:是我的数据库(帕金森)

结果应为2图:

第一个代表分配的基础 第二个代表每个人群的轮廓

但是

每当我在代码中使用clusplot函数时,我都会收到此错误:could not find function "clusplot"

我该怎么办?

1 个答案:

答案 0 :(得分:1)

正如Stephan所说,看起来cluster包没有加载。

确保安装时使用:

install.packages("cluster")

并且不要忘记加载它:

library("cluster")