Date: Nov 16, 2012 12:20 PM Author: Ruben Subject: Boxplot several datasets Hello,
I would like to plot several boxplots in the same figure for different datasets. For example:
figure; hold
boxplot(x1)
boxplot(x2)
boxplot(x3,'labels', {'1', '5', '10', '15', '20', '25'}))
where x1, x2, x3 are matrixes with size=[n,6]
I also would like to have the boxes in different colours or shapes. Is this possible?
Thanks a lot!