How to sorting categorical array for plotting
17 ビュー (過去 30 日間)
古いコメントを表示
Moh Rifqy Risqullah
2023 年 4 月 25 日
コメント済み: Moh Rifqy Risqullah
2023 年 4 月 25 日
Hi everyone,
I have categorical array that use to plot. But in the plot, the x-axis isn't numerically. Its plot from M1, M10, M2, M3...M9 instead M1,M2,...M10
male=MakeMaleSample(10);
male=categorical(male);
data_male=[1:10];
plot(male,data_male);
grid on
function male=MakeMaleSample(n)
male="M"+string(1:n);
end

Thanks for your help
0 件のコメント
採用された回答
Stephen23
2023 年 4 月 25 日
編集済み: Stephen23
2023 年 4 月 25 日
By default the categories are sorted into character order, not alphanumeric order.
S = "M"+(1:10);
A = categorical(S)
C = categories(A) % default order = sorted by character.
Y = 1:10;
plot(A,Y);
Solution one: You can specify the order when creating the categorical array:
D = categorical(S, "M"+(1:10)) % looks the same as A ...
categories(D) % but the categories are in the expected order.
Solution two: change the category order of an existing categorical array using REORDERCATS, e.g.:
[~,X] = sort(str2double(replace(C,"M","")));
B = reordercats(A,C(X));
categories(B)
E = reordercats(A,natsort(categories(A)));
categories(E)
Once you have the categories in the required order, then your plot will look as you expect:
plot(E,Y);
その他の回答 (1 件)
dpb
2023 年 4 月 25 日
function male=MakeMaleSample(n)
male=categorical("M"+1:n,"M"+1:n);
end
To force a non-lexical sort order, you have to specify the specific order explicitly...
参考
カテゴリ
Help Center および File Exchange で Shifting and Sorting Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

