Hello,
I am using hierarchical clustering in the Rstudio software with a database that involves several properties (farms). I used the following codes:
library (readxl)
B1 <- read_excel ("C: / Users / Jovani Souza / Google Drive / Google Drive PC / Work / Clustering / ITAI database / B1.xlsx")
A <-scale (B1)
d <-dist (B1)
fit.ward <-hclust (d, method = "ward")
plot (fit.ward, hang = -1, cex = .8, main = "Ward Linkage Clustering")
I am able to plot the graph, which shows the dendrogram. But would it be possible to show the results in a table, so that it is possible to view the properties that are within each cluster?
Thank you!!