Why isn't there any simple command to create a grouped boxplot in MATLAB yet?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Sharah
el 9 de Oct. de 2016
Editada: Massimo Zanetti
el 9 de Oct. de 2016
I am trying to plot a grouped boxplot on MATLAB but surprisingly Excel can do better!Can anyone suggest the best way to create a grouped boxplot as easy as making one for barchart?
0 comentarios
Respuesta aceptada
Massimo Zanetti
el 9 de Oct. de 2016
Editada: Walter Roberson
el 9 de Oct. de 2016
load carsmall
boxplot(MPG,Origin)
title('Miles per Gallon by Vehicle Origin')
xlabel('Country of Origin')
ylabel('Miles per Gallon (MPG)')
4 comentarios
Massimo Zanetti
el 9 de Oct. de 2016
Editada: Massimo Zanetti
el 9 de Oct. de 2016
According to what I know, yes they must have the same size. The reason is that, the boxplot helps visualizing different feature distributions of the same dataset of samples. Assume you have 100 observed animals, and for any of them you observe height, weigth. Then your data will be 100x2 matrix.
However, if you really need to explain different sized data, here is how to do it: https://it.mathworks.com/matlabcentral/answers/60818-boxplot-with-vectors-of-different-lengths
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!