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