문제

I have used SimpleKmeans class in WEKA, so I do clustering instance as well. But I have a problem during getting outlier instances.

I supposed, each cluster in this class has a center(or centroid) and a radius, so I could find outliers by checking all clusters' circle with its centroid and its radius. Although I couldn't find any variables or functions that get cluster's radius.

Now, Do you know any other way for finding outliers at SimpleKmeans class in WEKA? Or Any variables that shows radius for each cluster?

도움이 되었습니까?

해결책

I couldn't find any radius variable in SimpleKmeans class, however I use alternative solution.

Clustering find best cluster that has minimum Euclidean distance(or manhattan ,..), so It will outlier instance if the nearest cluster is more than a specific threshold.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top