Goodafternoon,
I'm plottin some values with bar() and I have the x values that overlaps. I was wondering if there was a way to have the values on the x axis shifted among them so to not touch each other.
I'll try to make an example here after:
------------------------------------------------------------------- this is xaxis
5 7 9 11
6 8 10
thanks a lot
Anita

댓글 수: 2

Yongjian Feng
Yongjian Feng 2021년 11월 11일
Maybe you just need to make your figure bigger/wider?
Anita Capelli
Anita Capelli 2021년 11월 11일
But in this way i'm loosing the propotions and appear different from any other graph I have on my repor. It is impossible to shift as I showed the value?

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

 채택된 답변

Dave B
Dave B 2021년 11월 11일

0 개 추천

You can make this kind of (multi-row) labelling work by relying on the TeX interpreter. Note this answer is a total rip-off of the answer here (not the accepted answer, but the one from Adam Danz).
plot(1:6)
row1 = {'1' '' '3' '' '5' ''};
row2 = {'' '2' '' '4' '' '6'};
labelArray = [row1; row2];
tickLabels = sprintf('%s\\newline%s\n', labelArray{:});
xlim([1 6])
xticks(1:6)
xticklabels(tickLabels)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

질문:

2021년 11월 11일

답변:

2021년 11월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by