library(stats)
d <- matrix(0,5,5)
d[lower.tri(d)] <- c(9,3,6,11,7,5,10,9,2,8)
d <- d+t(d)
d <- as.dist(d)
hc.s <- hclust(d, "single")
plot(hc.s,hang=-1)
_
このグラフは大丈夫ですが、軸は醜いです。私の教科書では、図は以下の通りです:教科書と同じ方法で私のグラフを作る方法は?
factoextra
を使ってみてください
library(factoextra)
fviz_dend(hc.s)
_