I need to separate same first column data values and its corresponding second column value.
1 view (last 30 days)
Show older comments
I have two dimensional data, as shown in figure.
I need to separate same first coloumn (column 1) data values and its corresponding second column (column 2) value, into groups.
How can I do this ?
Thanks in advance.

Accepted Answer
Adam Danz
on 18 May 2021
Edited: Adam Danz
on 18 May 2021
Another method using groupsummary
% Create demo table
g = repelem((1:2:9)',randi(4,5,1)+1,1);
T = table(g, rand(numel(g),1).*randi([2,8],numel(g),1), ...
'VariableNames', {'column1','column2'})
% Average column 2 for each group in column 1
Tstats = groupsummary(T,'column1','mean','column2')
0 Comments
More Answers (0)
See Also
Categories
Find more on Tables in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!