Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
NCTM or The Math Forum.
|
|
|
Re: Boxplot several datasets
Posted:
Nov 19, 2012 11:53 AM
|
|
> I would like to plot several boxplots in the same figure for different > datasets. For example: ... > I also would like to have the boxes in different colours or shapes. Is > this possible?
There are many related options in the boxplot function. Type "help boxplot", and try this to get you started:
x1 = rand(20,6); x2 = .5+rand(20,6); x3 = randn(20,6);
x = [x1;x2;x3]; x = x(:); g1 = [ones(size(x1)); 2*ones(size(x2)); 3*ones(size(x3))]; g1 = g1(:); g2 = repmat(1:6,60,1); g2 = g2(:);
boxplot(x, {g2,g1}, 'colorgroup',g1, 'factorgap',5, 'factorseparator',1)
-- Tom
|
|
|
|