How to select one column value and the values associated in that row and plot
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sai Gautam Mandapati
am 12 Aug. 2022
Kommentiert: Walter Roberson
am 15 Aug. 2022
Hi everyone,
I have a table with 1416 rows and 5 coulmns. So, for every time instant 0.5 - 29.5 I have the Node C1, C2, C3 and so on.. I want to get the data specific to C1 and time instants,cachehits and cachemisses, cachehitratio associated with it and plot a graph between Time and CacheHitRatio.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 12 Aug. 2022
mask = ismember(YourTable.Node, 'C1');
subsetC1 = YourTable(mask, :);
2 Kommentare
Walter Roberson
am 15 Aug. 2022
uniq_node = unique(YourTable.Node);
num_uniq = length(uniq_node);
subsets = cell(num_uniq, 1);
for K = 1 : num_uniq
this_node = uniq_node{K};
mask = ismember(YourTable.Node, this_node);
subsets{K} = YourTable(mask, :);
end
for K = 1 : num_uniq
this_subset = subsets{K};
plot(this_subset.Time, this_subset.CacheHitRatio, 'DisplayName', uniq_node{K});
hold on
end
hold off
xlim auto; ylim auto
legend show
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical 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!