2015-09-30 73 views
0

我做了一个可重现的例子,我在pvclust中遇到了麻烦。我的目标是在分层簇树形图中选择理想的簇。我听说过'pvclust',但不知道如何使用它。此外,如果任何人有除此之外的其他建议,以确定理想的群集,这将是非常有益的。R - 'pvclust'中的分层聚类问题

提供我的代码。

library(pvclust)  

employee<- c('A','B','C','D','E','F','G','H','I', 
     'J','K','L','M','N','O','P', 
     'Q','R','S','T', 
     'U','V','W','X','Y','Z') 
salary<-c(20,30,40,50,20,40,23,05,56,23,15,43,53,65,67,23,12,14,35,11,10,56,78,23,43,56) 
testing90<-cbind(employee,salary) 
testing90<-as.data.frame(testing90) 
head(testing90) 
testing90$salary<-as.numeric(testing90$salary) 
row.names(testing90)<-testing90$employee 
testing91<-data.frame(testing90[,-1]) 
head(testing91) 
row.names(testing91)<-testing90$employee 
d<-dist(as.matrix(testing91)) 
hc<-hclust(d,method = "ward.D2") 
hc 
plot(hc) 

par(cex=0.6, mar=c(5, 8, 4, 1)) 
plot(hc, xlab="", ylab="", main="", sub="", axes=FALSE) 
par(cex=1) 
title(xlab="Publishers", main="Hierarchal Cluster of Publishers by eCPM") 
axis(2) 

fit<-pvclust(d, method.hclust="ward.D2", nboot=1000, method.dist="eucl") 

错误上前指出:

Error in names(edges.cnt) <- paste("r", 1:rl, sep = "") : 
    'names' attribute [2] must be the same length as the vector [0] 
+0

您能指定您在MRE中使用的库吗? – erasmortg

+0

刚刚添加库(pvclust)@erasmortg – analytics

+1

嗨@analytics,根据你得到的答案,我会提到,如果你还想要可视化结果,你可以参考以下内容:https://cran.r-project .org/web/packages/dendextend/vignettes/introduction.html#denixtend R包中的#pvclust文档: –

回答

1

一个解决办法是迫使你的对象dmatrix

pvclust帮助文件:

数据的数字数据矩阵或数据帧。

注意,迫使dist类型的对象为marix,因为它是一个对角线它会被“反映”(数学术语逃脱我现在),你可以检查对象正在被考虑与呼叫:

as.matrix(d) 

这将是你正在寻找的呼叫:

#note that I can't 
pvclust(as.matrix(d), method.hclust="ward.D2", nboot=1000, method.dist="eucl") 
#Bootstrap (r = 0.5)... Done. 
#Bootstrap (r = 0.58)... Done. 
#Bootstrap (r = 0.69)... Done. 
#Bootstrap (r = 0.77)... Done. 
#Bootstrap (r = 0.88)... Done. 
#Bootstrap (r = 1.0)... Done. 
#Bootstrap (r = 1.08)... Done. 
#Bootstrap (r = 1.19)... Done. 
#Bootstrap (r = 1.27)... Done. 
#Bootstrap (r = 1.38)... Done. 
# 
#Cluster method: ward.D2 
#Distance  : euclidean 
# 
#Estimates on edges: 
# 
#  au bp se.au se.bp  v  c pchi 
#1 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#2 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#3 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#4 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#5 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#6 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#7 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#8 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#9 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#10 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#11 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#12 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#13 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#14 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#15 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#16 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#17 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#18 1.000 1.000 0.000 0.000 0.000 0.000 0.000 
#19 0.853 0.885 0.022 0.003 -1.126 -0.076 0.058 
#20 0.854 0.885 0.022 0.003 -1.128 -0.073 0.069 
#21 0.861 0.897 0.022 0.003 -1.176 -0.090 0.082 
#22 0.840 0.886 0.024 0.003 -1.100 -0.106 0.060 
#23 0.794 0.690 0.023 0.005 -0.658 0.162 0.591 
#24 0.828 0.686 0.020 0.005 -0.716 0.232 0.704 
#25 1.000 1.000 0.000 0.000 0.000 0.000 0.000 

注意,此方法将解决您的电话,但聚类方法的有效性和质量数据的一世为你决定。你的MRE是值得信赖的。

+0

谢谢@ erasmortg's – analytics

+0

np,很高兴为您提供帮助! – erasmortg