标签: r plot graphics hclust
我想制作下面的图(对于一维x),但是为了让我们将观察位于x轴的正确位置(而不是它们的等级位置):
x <- c(1,2, 7, 9) names(x) <- x plot(hclust(dist(x)), hang= -1) axis(1)
我怀疑在R中没有现成的功能。有关如何编写这样的函数的任何建议吗?