BoxChart box position doesnt match xaxis label when 'groupbycolor'

조회 수: 30 (최근 30일)
Danylyna Shpakivska
Danylyna Shpakivska 2022년 7월 21일
편집: Adam Danz 2022년 11월 17일
how to align xaxes label when using groupbycolor' option in boxchart?
as you can see on the web example xaxes isnt alignied to each boxplot.
the same appens in my boxchart.
how to solve it? thanks in advance
  댓글 수: 2
dpb
dpb 2022년 7월 21일
It's centered on the group; you don't have both colors in all groupings so it's an optical delusion at RHS of example...yours has only one for all groupings.
Danylyna Shpakivska
Danylyna Shpakivska 2022년 7월 21일
So the problem is that i dont have de same number of categories on xgroup data than on cgroupdata?
Anyway, there is somo way to adjust the xaxis manually? for example, getting the position of each boxchar? how can I access to that?
Thanks

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

채택된 답변

Adam Danz
Adam Danz 2022년 7월 21일
The example you shared from the documentation (link) uses grouped data. Groups are centered around the x-ticks. If you are missing members of group, the missing groups will appear as empty space.
If I add vertical grid lines and expand the image, this is easier to see.
I have a feeling you're also using grouped data to control the colors of your boxplots and your missing groups appear as empty space.
  댓글 수: 4
Danylyna Shpakivska
Danylyna Shpakivska 2022년 11월 17일
Y=[T.number_events];
xgroupdata = T.roi_label.*T.roi_hemis; % These are my xtick categories ("labels")
figure
set(gcf, 'Position', [380,258,1250,500])
plot_alpha=boxchart(xgroupdata,Y,'Notch','on','GroupByColor',categorical(T.group_subj));
% "T.group_subj" is the variable that groups by color.
legend
title(sprintf('%s Events',freq_band))
xlabel('Groups per ROI')
ylabel('Number of Events (Median)')
---------------------------------
The variable to group by color (legend) should be provided as other entry to the boxchart function. I hope it helps you.
Adam Danz
Adam Danz 2022년 11월 17일
편집: Adam Danz 2022년 11월 17일
@Alejandro Nogueron Aramburu, follow this example from the documentation. Group by cgroupdata. You can ignore the last line of code in the example - that line shows how to change a box color.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by