How to display sample size on each box of a boxplot? Many boxes have different sample sizes.
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Say I graph a boxplot figure with 4 boxes. I would like to display the sample size, n, for each of the individual boxes on the figure. How do I do this?
Thanks!
0 Kommentare
Antworten (1)
Star Strider
am 1 Okt. 2012
Bearbeitet: Star Strider
am 5 Okt. 2012
An example:
D = normrnd(0, 1, 10, 4) + repmat([0 1 2 3]*0.5,10,1);
M = mean(D);
G = {'A' 'B' 'C' 'D'};
N = [12 5 8 10];
figure(1)
boxplot(D,G)
for k1 = 1:size(D,2)
text(k1-0.15,M(k1)*1.2, sprintf('N = %d', N(k1)), 'FontSize',8);
end
2 Kommentare
Star Strider
am 23 Okt. 2012
Bearbeitet: Star Strider
am 24 Okt. 2012
It's always my pleasure to help — especially a fellow 'Hoo!
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!