how show the clusters graphically?

2 ビュー (過去 30 日間)
huda nawaf
huda nawaf 2012 年 8 月 12 日
コメント済み: avadh kushwaha 2021 年 5 月 6 日
hi,
I got the indices of clusters of my data. I would like to see the result with drawing. i.e I hope to see the clusters graphically.
can do that?
thanks in advance

回答 (3 件)

per isakson
per isakson 2012 年 8 月 13 日
A search for "cluster" refined by Graphics in the File Exchange finds twenty contributions.
... and the statistical toolbox
  3 件のコメント
Walter Roberson
Walter Roberson 2012 年 8 月 13 日
Look at the Description at that link. It describes exactly what each of the parameters means.
Image Analyst
Image Analyst 2012 年 8 月 13 日
There are no clusters in that data because your data is uniformly spaced. Or there are 6 clusters with just one point in them, or one big cluster with 6 points. You don't really have aggregation or clumping of any of the points.

サインインしてコメントする。


Ilya
Ilya 2012 年 8 月 13 日
Huda, when I answered your other question, I suggested that you run 'doc linkage' and gave you a link to the web doc for that function. At the bottom of that page, you can see examples of two different plots. Are you asking for a plot that is not on that page?
  2 件のコメント
huda nawaf
huda nawaf 2012 年 8 月 13 日
i saw , but I think scatter do not work with my case. please see comments below with image analyst
thanks
Ilya
Ilya 2012 年 8 月 13 日
Use gscatter.

サインインしてコメントする。


Image Analyst
Image Analyst 2012 年 8 月 13 日
Why not just use the scatter() function? If that doesn't work, then explain why not, and use more words to do it.
  31 件のコメント
Ilya
Ilya 2012 年 8 月 31 日
load fisheriris
d = pdist(meas);
Z = linkage(d);
c = cluster(Z,'maxclust',4);
Y = cmdscale(d);
gscatter(Y(:,1),Y(:,2),c)
avadh kushwaha
avadh kushwaha 2021 年 5 月 6 日
how i can draw same image in matlab plsease tell

サインインしてコメントする。

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by