Combine two box plots and a line plot in one figure
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have 3 data sets (x1,y1),(x2,y2),(x3,y3) each of them are 1D arrays of different sizes, e.g. (x1,y1) has 30 elements each, (x2,y2) has 40 and (x3,y3) has 50 elements each..I want to create boxplots for sets (x1,y1) and (x2,y2) and a line plot for (x3,y3) and plot all of them on a single figure with a common X and Y axis range. All values of x1,x2,x3 lie between (0.5 to 1.1) and y1,y2,y3 lie between (200 to 2000)..How do I do it?
1 Kommentar
Antworten (2)
Lukas Öhlund
am 6 Sep. 2023
Bearbeitet: DGM
am 6 Sep. 2023
All the x-vectors needs to be categorical. I have not tried creating two boxplots in the same graph, but I have combined a boxchart and line-plots.
What i do is:
figure()
boxchart(my_array_containing_data)
hold on
categorical_x_vect = categorical(my_real_x_vect);
plot(categorical_x_vect, my_y_data)
hold off
I know this is an old question, but maybe it helps someone.
Cheers!
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!