Clustering based on threshold values.
8 ビュー (過去 30 日間)
古いコメントを表示
I have a dataset ,attached here. I need to cluster the data based on some threshold value that chhosen randomly from the data set.How can I cluster a data based on a point or a set of points. Please help me.
0 件のコメント
回答 (3 件)
Hiro Yoshino
2020 年 2 月 4 日
Is this a question about how to classify the data based on threshold?
if condition
"classification description"
else
"classification description"
end
can be a solution.
Hiro Yoshino
2020 年 2 月 5 日
There are various methods available:https://jp.mathworks.com/discovery/cluster-analysis.html
2 件のコメント
Hiro Yoshino
2020 年 2 月 5 日
Do you want to use fixed some points as centroids of the clusters?
OK, you've got an algorithm?
Then, is your question how to put the algorithm into practice in MATLAB?
Your algorithm sounds very straightfoward. It seems it is just a matter of how to write it in MATLAB. Am I right?
If so, you should start from basics: https://matlabacademy.mathworks.com/
MATLAB onramp is a good fit for you.
Silpa K
2020 年 2 月 5 日
2 件のコメント
Hiro Yoshino
2020 年 2 月 5 日
As far as I know, the centroids of clusters are determined by the corresponding clusters. So it is uncommon to fix the centroids before finding the clusters.
I suppose you can write by yourself. It sounds very easy.
Algorithm as follows:
- calculate the distances from all the centroids
- classify the data into the nearest cluster
- loop 1 and 2 till end
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!