Plotting multiple boxplots within the same plot/figure
Mostrar comentarios más antiguos
I have six variables that I would like to plot within the same figure/plot as individual box-plots. I have tried doing so by plotting one, then using 'hold on' before the plotting the next, but this hasn't worked. How might I go about doing this?
Thank you.
2 comentarios
Walter Roberson
el 30 de Nov. de 2012
subplot() ?
Respuesta aceptada
Más respuestas (1)
Emma
el 1 de Dic. de 2012
0 votos
1 comentario
Walter Roberson
el 1 de Dic. de 2012
shortcut:
NMat = nan(6, 10000);
And since you are copying the same number of columns for each you can eliminate the other lines:
boxplot( [mat1(:), mat2(:), mat3(:), mat4(:), mat5(:), mat6(:)], 'notch', 'on', 'color', 'rb')
Categorías
Más información sobre Box Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!