我在文件stations.dat中存储了以下数据集:

       Station A 305.2 321.1 420.9 383.5 311.7 197.1 160.2 113.9 60.5 60.5 64.8 154.3
       Station B 281.1 304.0 353.1 231.9 84.6 20.9 11.7 11.9 31.1 75.8 133.0 235.3
       Station C 312.3 342.2 366.2 335.2 200.1  74.4 45.9   27.5 24.0   53.6 87.7 177.0
       Station D 402.2 524.5 554.9 529.5 347.5  176.8 120.2 35.0 12.6 13.3 14.0 61.6
       Station E 261.3 262.7 282.3 232.6 103.8  33.2 16.7   33.2 111.0  149.0 184.8 227.0

通过使用以下命令,
Z = linkage (stations.data,'ward','euc');
figure (1), dendrogram(Z,0,'orientation', 'right')

我得到的数字如下:
因此,集群1的分量为4,3,1(分别为D、C和A站),集群2的分量为5,2(E和B站)。
我想在绘图中显示站点的名称,但如果使用命令:
set (gca,'YTickLabel', stations.textdata);

我得到的数字如下:
如何将数据关联到树状图中的相应名称和绘图。
我有144个站点的数据我只用了5个来说明。

最佳答案

请尝试以下操作:

ind = str2num(get(gca,'YTickLabel'));
set(gca, 'YTickLabel',stations.textdata(ind))

更简单的方法是直接在dendrogram调用中指定数据点的标签:
dendrogram(Z,0, 'Orientation','right', 'Labels',stations.textdata)

10-01 03:50