How to sort a table based off of values in one row in MATLAB

조회 수: 40 (최근 30일)
Allie Geiger
Allie Geiger 2021년 3월 8일
댓글: Jan 2021년 3월 9일
I am working on analyzing a data set for a 2AFC task. I have a table called 'SmallerTable,' that has multiple columns. One of my columns titled 'GroupB', I have various numbers ranging from 1:28 in this column. I would like to put these in order so that row one has the number 1, row two has the number 2 and so on. I would like every respective colum to sort their rows according to how this GroupB column is sorted.
Would anyone be able to help me with this?

답변 (2개)

the cyclist
the cyclist 2021년 3월 8일
편집: the cyclist 2021년 3월 8일
Take a look at the documentation for the sortrows function, in particular the example on sorting rows of tables by variables. The syntax is basically
tblB = sortrows(tblA,vars)
where vars is a cell array with the variable name(s).
  댓글 수: 2
Allie Geiger
Allie Geiger 2021년 3월 8일
Thank you for your feedback I am getting the following error now:
Error using tabular/sortrows (line 88)
An error occurred when sorting the variable 'GroupB', whose type is 'table'.
Thank you for any and all help!
the cyclist
the cyclist 2021년 3월 8일
Can you upload your data in a MAT file, using the paperclip icon in the toolbar?
If you cannot for some reason, could you upload a sample (perhaps just a few rows and columns) of the data that gives the same error?

댓글을 달려면 로그인하십시오.


Jan
Jan 2021년 3월 8일
편집: Jan 2021년 3월 8일
sortedTable = sortrows(SmallerTable, {'GroupB'})
  댓글 수: 2
Allie Geiger
Allie Geiger 2021년 3월 8일
Thank you for your feedback I am getting the following error now:
Error using tabular/sortrows (line 88)
An error occurred when sorting the variable 'GroupB', whose type is 'table'.
Thank you for any and all help!
Jan
Jan 2021년 3월 9일
Then SmallerTable is not a table, because a column of a table cannot be a table also. Please post an example of your data.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by