BoxChart box position doesnt match xaxis label when 'groupbycolor'

19 visualizaciones (últimos 30 días)
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 comentarios
dpb
dpb el 21 de Jul. de 2022
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 el 21 de Jul. de 2022
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

Iniciar sesión para comentar.

Respuesta aceptada

Adam Danz
Adam Danz el 21 de Jul. de 2022
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 comentarios
Danylyna Shpakivska
Danylyna Shpakivska el 17 de Nov. de 2022
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 el 17 de Nov. de 2022
Editada: Adam Danz el 17 de Nov. de 2022
@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.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by