树形图中的相关标签 - MATLAB

时间:2013-05-27 19:15:58

标签: matlab plot label cluster-analysis dendrogram

我在文件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')

我得到下图: enter image description here

因此,群集1组件是4,3,1(分别是站D,C和A),群集2是5,2(站E和B)。

我想在绘图上输入Stations的名称,但是如果我使用命令:

set (gca,'YTickLabel', stations.textdata);

我得到的数字如下: enter image description here

如何将数据与相应的名称相关联并在树形图中绘图。 我有144个站数据。我只用了5来说明。

1 个答案:

答案 0 :(得分:9)

尝试以下方法:

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

更简单的方法是直接在dendrogram调用中指定数据点的标签:

dendrogram(Z,0, 'Orientation','right', 'Labels',stations.textdata)

dendrogram