Sort categorical variables in an alphabetical order

6 次查看(过去 30 天)
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 个评论
Ive J
Ive J 2020-12-12
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 2020-12-12
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.

请先登录,再进行评论。

采纳的回答

Rik
Rik 2020-12-12
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

更多回答(0 个)

类别

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