R中的简单树形图,第一个数据列作为标签

时间:2016-04-09 20:22:18

标签: r labels dendrogram

我使用以下命令在R中创建了一个树形图...

我一直在尝试找到用数字集中的第一列县名称替换数字的命令,或者使用县名而不是数字加载图表。如果有人能提供帮助,那将不胜感激。

hc = hclust(dist(NYCounty))
plot(hc)

The current plot

The data of NYCounty

1 个答案:

答案 0 :(得分:1)

您可以将其传递给labels中的plot.hclust参数。一个可重复的例子显示了这个:

# example from ?hclust
hc <- hclust(dist(USArrests), "ave")
plot(hc)
# custom labels
df <- data.frame(foo=paste("hi", 1:50))
plot(hc, labels=df$foo)

这是你想要的吗?