How to do a boxplot for three samples of different sizes?

134 ビュー (過去 30 日間)
MC3105
MC3105 2014 年 12 月 1 日
回答済み: Thorsten 2014 年 12 月 1 日
Hey everyone,
I am trying to create a boxplot for errors values of three different models. Each error vector has a different size. On the internet I already found a solution for integrating two vectors of different sizes into one boxplot:
x = randn(600,1);
y = randn(1440,1);
z = [x; y];
g = [zeros(length(x),1); ones(length(y),1)];
boxplot(z,g);
Is there a way to to this for three vectors??

採用された回答

Thorsten
Thorsten 2014 年 12 月 1 日
x1 = randn(600,1);
x2 = randn(1440,1);
x3 = randn(500, 1);
x = [x1; x2; x3];
g = [zeros(length(x1), 1); ones(length(x2), 1); 2*ones(length(x3), 1)];
boxplot(x, g)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeColormaps についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by