필터 지우기
필터 지우기

bar plot ylim problem

조회 수: 59 (최근 30일)
alex brown
alex brown 2019년 4월 23일
댓글: alex brown 2019년 4월 23일
I want to set some blank space in y axis in a bar plot. ylim doesn't work. I just don't want to have a tight ylim plot (I need some blank space above the data, actually).
here is my code:
figure
uu=[6 5 7;8 6 4; 7 5 9];
nm={'DLC','TOU','RTP'};
nmc=categorical(nm);
bar(nmc,(uu))
legend('n','m','k')
here is the result:
ress.jpg

채택된 답변

Adam Danz
Adam Danz 2019년 4월 23일
편집: Adam Danz 2019년 4월 23일
ylim() does work.
ylim([0,15]) %at the end of your code; shown in the figure below.
Or you can make it flexible. This line below adds space that equals 10% of your highest bar.
h = bar(nmc, uu);
maxBar = max(cellfun(@max, get(h, 'YData')));
ylim([0, maxBar*1.1])
  댓글 수: 1
alex brown
alex brown 2019년 4월 23일
very good, thank you for your time. good luck.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by