How do I change the x labels on a boxchart plot?

조회 수: 155 (최근 30일)
Yoni Verhaegen -WE-1718-
Yoni Verhaegen -WE-1718- 2022년 3월 25일
답변: Simon Chan 2022년 3월 25일
I have a script for a boxchart plot, but I cannot find anywhere how to change the labels of the x axis. I want the 1, 2 and 3 replaced by , and . Can anyone help me? Thanks.
x=rand(3,3);
figure
hbx = boxchart(x);
xMdn = median(x);
boxw = hbx.BoxWidth;
xd = 1:numel(hbx.XData);
hold on
plot(0.5*boxw*[-1;1]+xd, [1;1]*xMdn, '-r','LineWidth',1.5)
hold off
box on
grid on
set(gca,'FontSize',14)
set(gcf, 'color', 'white')
hbx.MarkerStyle = '+';
hbx.MarkerColor = 'r';
set(gca,'Yscale','log')

채택된 답변

Simon Chan
Simon Chan 2022년 3월 25일
Try this:
x=rand(3,3);
figure
hbx = boxchart(x);
xMdn = median(x);
boxw = hbx.BoxWidth;
xd = 1:numel(hbx.XData);
hold on
plot(0.5*boxw*[-1;1]+xd, [1;1]*xMdn, '-r','LineWidth',1.5)
hold off
box on
grid on
set(gca,'FontSize',14)
set(gcf, 'color', 'white')
hbx.MarkerStyle = '+';
hbx.MarkerColor = 'r';
set(gca,'Yscale','log')
set(gca,'TickLabelInterpreter','latex');
set(gca,'XTickLabel',{'$$h^{e}_{d}$$','$$h^{c}_{d}$$','$$h^{*}_{d}$$'});

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by