how to find out the content of one cluster
조회 수: 1 (최근 30일)
이전 댓글 표시
I have multiple clusters and I am concerning how to find the features of each cluster. Is there any way that allows me to find the cluster's content or features and what features are in the cluster.
Thanx
댓글 수: 0
채택된 답변
Walter Roberson
2014년 2월 24일
Not really, no. Clusters, especially as determined by k-means, do not have "features". The k-means documentation indicates,
This iterative partitioning minimizes the sum, over all clusters, of the within-cluster sums of point-to-cluster-centroid distances. Rows of X correspond to points, columns correspond to variables.
If you were working with two variables (two columns) then a geometric interpretation would be that any given point P is considered to be associated with a centroid C if the circle of radius |PQ| around P does not (strictly) include any other centroid.
Likewise you can extend to three variables (three columns) and extend the geometric interpretation to be "sphere" instead of "circle".
You can see, then, that the cluster associated with C does not have any particular value or even value range for the variables. The boundary between clusters would be the intersection of hyperspheres around the centroids.
If you were using SVM, and you had only two clusters, then you could find a hyperplane that divided the two clusters -- but a hyperplane is not what one would typically think of as being a "feature".
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Cluster Analysis and Anomaly Detection에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!