4

对于大型数据集,我想在可以看到所有标签的树状图中调整 x 轴。例如,我在这里使用 iris 数据:

    > 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 轴,以便所有物种都清晰可见。

4

1 回答 1

8

就像@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()

您将能够查看物种的名称,尽管字体很小。希望这可以帮助。

于 2012-07-12T08:36:41.917 回答