对于大型数据集,我想在树形图中调整x轴,其中可以看到所有标签。例如,我在这里使用虹膜数据:
> iris.data=subset(iris,select=-Species)
> d <- dist(iris.data, method="euclidean")
> hc <- hclust(d, "ward")
> plot(hc, hang=-1, main="Dendrogram of Ward's Method", label=iris$Species)
使用绘图功能后,树形图将如下所示:
那么,我将如何调整x轴,以便所有物种都清晰可见。
答案 0 :(得分:7)
像@Roman一样Luštrik说: 你可以这样做:
png("plotdendogram.png",width=1600,height=800)
par(cex=1,font=3)
plot(hc, hang=-1, main="Dendrogram of Ward's Method", label=iris$Species)
dev.off()
您可以查看物种的名称,但字体很小。 希望这会有所帮助。