search for: sampleset

Displaying 1 result from an estimated 1 matches for "sampleset".

Did you mean: samplesset
2016 Apr 12
1
Dissimilarity matrix and number clusters determination
Hi, I already have a dissimilarity matrix and I am submitting the results to the elbow.obj method to get an optimal number of clusters. Am I reading the below output correctly that I should have 17 clusters? code: top150 <- sampleset[1:150,] {cluster1 <- daisy(top150 , metric = c("gower") , stand = TRUE , type = list(symm = 1)) } dist.obj <- dist(cluster1) hclust.obj <- hclust(dist.obj) css.obj <- css.hclust(dist.obj,hclust.obj) elbow.obj <- elbo...