how to printout the outputs of the clusters while doing it using the built in functions??
조회 수: 1 (최근 30일)
이전 댓글 표시
suppose here are the parameters
P=xlsread('NSL_KDD_TRAIN.xlsx','A2:AO125');
Q=xlsread('NSL_KDD_TRAIN.xlsx','AP2:AP125');
%cluster the dataset
T = kmeans(Q,5);
figure ;
silhouette(Q,T);
xlabel 'Silhouette Value';
ylabel 'Cluster';
how to find out those 5 clusters outputs and store them in different 5 variables?
댓글 수: 0
답변 (1개)
ag
2024년 11월 13일
편집: ag
2024년 11월 13일
Hi Wasima,
The "kmeans" function returns an array of cluster indices, which you can use to separate your data according to the clusters and store accordingly.
The below code snippet demonstrates how to do that:
% Perform k-means clustering
numClusters = 5;
T = kmeans(dataSet, numClusters);
% Initialize cell arrays to store cluster outputs
clusters = cell(numClusters, 1);
% Separate the data into clusters based on the cluster indices
for i = 1:numClusters
clusters{i} = dataSet(T == i, :);
end
For more details, please refer to the following MathWorks documentation: kmeans - https://www.mathworks.com/help/stats/kmeans.html
Hope this helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!