Help using grpstats function to get number of occurances per row on a table.

1 view (last 30 days)
I have the following table (4 rows, column names are simply "Col1", "Col2" and so on), for which I'd like to apply grpstats function on.
'China','Hong Kong', '', 'China'
'', 'Switzerland', '', 'Switzerland'
'United States', 'Ireland', '', 'United States'
'Finland', 'Finland', 'Sweden', ''
What I would like to do is to get is the most repeated observation across the rows, using such function without needing to use a combination of accumaray, categorical and unique.
How may I use it? Can you help please?
  3 Comments
Adam Danz
Adam Danz on 29 Apr 2021
My answer uses groupcounts which does not rely on having the stats & machine learning toolbox, unlike grpstats.

Sign in to comment.

Answers (1)

Adam Danz
Adam Danz on 28 Apr 2021
C = {'China','Hong Kong', '', 'China'
'', 'Switzerland', '', 'Switzerland'
'United States', 'Ireland', '', 'United States'
'Finland', 'Finland', 'Sweden', ''};
rowNum = repmat((1:size(C,1))', 1, size(C,2));
T = table(C(:),rowNum(:),'VariableNames',{'Country','RowNum'});
B = groupcounts(T,{'RowNum','Country'})
B = 11×4 table
RowNum Country GroupCount Percent ______ _________________ __________ _______ 1 {0×0 char } 1 6.25 1 {'China' } 2 12.5 1 {'Hong Kong' } 1 6.25 2 {0×0 char } 2 12.5 2 {'Switzerland' } 2 12.5 3 {0×0 char } 1 6.25 3 {'Ireland' } 1 6.25 3 {'United States'} 2 12.5 4 {0×0 char } 1 6.25 4 {'Finland' } 2 12.5 4 {'Sweden' } 1 6.25

Products


Release

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!