df <- scale(mtcars) # Standardize the data
library("factoextra")
library("cluster")
dist <- dist(df, method = "euclidean") # df = standardized data
hc <- hclust(dist, method = "ward.D2")
fviz_dend(hc, k = 4, # Cut in four groups
cex = 0.6, # label size
k_colors = "jco",
color_labels_by_k = TRUE, # color labels by groups
rect = TRUE, # Add rectangle around groups
rect_border = "jco",
rect_fill = TRUE,
rotate = TRUE)
Hello, New to r, my questions are;
- I want dendrogram in clockwise direction as below plot, how can I make horizontal ylab labels in dendrogram
- How can I reduce space between axis ticks and axis labels I have used mtcars data