Sort categorical variables in an alphabetical order

6 views (last 30 days)
I have a set of categorical variables
A = {'NY','Boston'}
How can one sort A to B as
B = {'Boston','NY'}
I tried sort but does not work.
  2 Comments
Ive J
Ive J on 12 Dec 2020
This is very sruprising that sort doesn't work for you (I'm wondering how is this even possible).
A = {'NY', 'Boston'};
sort(A)
1×2 cell array
{'Boston'} {'NY'}
alpedhuez
alpedhuez on 12 Dec 2020
I think in general a better pratice to define a proxy variable (Boston = 1 and NY =2) and work on the proxy variable instead of dealing with letters.

Sign in to comment.

Accepted Answer

Rik
Rik on 12 Dec 2020
As Ive Ive suggested: the sort function will do what you need:
B = categorical({'NY','Boston'});
sort(B)
ans = 1×2 categorical array
Boston NY

More Answers (0)

Categories

Find more on Shifting and Sorting Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!