MATLAB: Y-axis in subplots of Boxplot

boxplot axis subplot

Hi
I am making several subplots in 1 figure using Boxplot and subplot. But how can I adjust the y-axis, so that in each boxplot the y-axis goes from e.g. 0 to 120, with ticks at 0, 10, 20 etc.?
Thanks for your support
Jarno

Best Answer

X = rand(100,25)*120;
subplot(2,1,1)
boxplot(X)
ylim([0 120])
set(gca,'YTick',0:10:120)
subplot(2,1,2)
boxplot(X,'plotstyle','compact')
ylim([0 120])
set(gca,'YTick',0:10:120)