How can I change bar graph x-axis?

82 ビュー (過去 30 日間)
MByk
MByk 2021 年 8 月 11 日
コメント済み: dpb 2021 年 8 月 12 日
Hello, I want to order my bar graph (left hand side) in descending order but didn't succeed in ordering x-axis labels (right hand side). Values in x-axis are feature indices. How can I fix it? Thanks for the help.
[a,b] = sort(Scores_Avg,2,'descend')
bar(Scores_Avg(b))
text(1:length(a), a', num2str(a','%0.3f'),...
'HorizontalAlignment','center','VerticalAlignment','bottom');
set(gca,'XTick',b);

採用された回答

dpb
dpb 2021 年 8 月 11 日
編集済み: dpb 2021 年 8 月 11 日
[a,ia] = sort(Scores_Avg,2,'descend'); % use more meaningful index variable
bar(a) % plot the sorted array vs linear order
xticks(1:numel(a)) % set the tick marks to match bar number
xticklabels(ia) % label x ticks to go with sorted order
...
You need to first also set xticks to the full number of bins if there are enough bars that the default tick marks don't put that many tick marks on the axes.
NB: the caveat in the comment below -- as N grows, space starts to get very dear...
  6 件のコメント
MByk
MByk 2021 年 8 月 12 日
Thanks.
dpb
dpb 2021 年 8 月 12 日
No problem; realized later shoulda' just done it that way originally because you can't count on the default ticks. Bad implementation choice internally, but just one of the many warts in bar().

サインインしてコメントする。

その他の回答 (1 件)

Henry Barth
Henry Barth 2021 年 8 月 11 日
set(gca,'XtickLabels',arrayfun(@num2str,b,'UniformOutput',false));
  3 件のコメント
Henry Barth
Henry Barth 2021 年 8 月 11 日
what exactly is not working?
MByk
MByk 2021 年 8 月 12 日
Henry thanks for the help much appreciated.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeData Distribution Plots についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by