필터 지우기
필터 지우기

How to assign lables of box plot

조회 수: 2 (최근 30일)
Mekala balaji
Mekala balaji 2018년 4월 7일
댓글: Star Strider 2018년 4월 13일
Hi,
I have below data:
A B C 1 3 5 12 23 56 12 15 26 18 28 23 19 29 27 25 33 46
I want to get the box plot, and assign each plot name as (A,B,C)
Dataset: 1 3 5 12 23 56 12 15 26 18 28 23 19 29 27 25 33 46
xlabels: {'A' 'B' 'C'}
ylables: {'ObservedData'}
My code: boxplot(dataset) ylabel('ylables') xlabel('xlables') But, I can get the xlables (as A, B, C)

채택된 답변

Star Strider
Star Strider 2018년 4월 7일
Try this:
Dataset = [ 1 3 5
12 23 56
12 15 26
18 28 23
19 29 27
25 33 46];
xlabels = {'A' 'B' 'C'};
ylabels = {'Observed Data'};
figure
boxplot(Dataset)
ylabel(ylabels)
set(gca, 'XTickLabel',xlabels)
  댓글 수: 2
Mekala balaji
Mekala balaji 2018년 4월 13일
But it does not show anything (on x-axis) in Matlab2012
Star Strider
Star Strider 2018년 4월 13일
It should work, although sometimes it is necessary to specify the 'XTick' values as well.
I am using R2018a. This should work for R2012:
figure
boxplot(Dataset)
ylabel(ylabels)
xt = get(gca, 'XTick');
set(gca, 'XTick',xt, 'XTickLabel',xlabels)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by