'Hierarchical Clustering in R cannot be run
I tried to run a h cluster from my data, but i can really find one that can work
Dissimilarity matrix
d <- dist(data, method = "euclidean")
Hierarchical clustering using Complete Linkage
hc1 <- hclust(d, method = "complete" )
Plot the obtained dendrogram
plot(hc1, cex = 0.6, hang = -1)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|