How to plot multiple box plots on same graph with same size vector?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
DulceEien
el 28 de Ag. de 2021
Comentada: Wan Ji
el 28 de Ag. de 2021
Hello, I have two vectors with the same length and I want to plot both in the same boxplot but I can only see one
I tried this
vol = [D1(:,1);C1(:,1)];
plot = figure;
boxplot(vol);
title('Volume differences')
ylabel('Volume [m^{3}]')
0 comentarios
Respuesta aceptada
Wan Ji
el 28 de Ag. de 2021
Hi, just change line 1
vol = [D1(:,1);C1(:,1)];
to
vol = [D1(:,1), C1(:,1)];
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Discrete Data Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!