how to printout the outputs of the clusters while doing it using the built in functions??
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
ag
am 13 Nov. 2024 um 17:47
Bearbeitet: ag
am 13 Nov. 2024 um 17:48
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 Kommentare
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!