Path: news.mathworks.com!not-for-mail
From: "Pekka Kumpulainen" <pekka.nospam.kumpulainen@tut.please.fi>
Newsgroups: comp.soft-sys.matlab
Subject: Re: boxplot
Date: Mon, 17 Nov 2008 08:28:02 +0000 (UTC)
Organization: Tampere University of Technology
Lines: 12
Message-ID: <gfr9uh$6lr$1@fred.mathworks.com>
References: <gfk36r$bca$1@fred.mathworks.com>
Reply-To: "Pekka Kumpulainen" <pekka.nospam.kumpulainen@tut.please.fi>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1226910482 6843 172.30.248.37 (17 Nov 2008 08:28:02 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Mon, 17 Nov 2008 08:28:02 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 218565
Xref: news.mathworks.com comp.soft-sys.matlab:501166


"Thamar van Esch" <thamarvanesch@gmail.com> wrote in message <gfk36r$bca$1@fred.mathworks.com>...
> Is there a way to control the y-axis features in boxplot? I would like to change the label ('Values' is default) and set the scale manually, but the regular 'set(gca,...)' does not work for boxplot.
> 
> Thanks

What is it exactly that doesn't work?
At least these do work:
boxplot(randn(100,3))
set(gca,'YLim',[-5 5], ...)
'YTick',[-2 0 2], ...
'YTickLabel',{'L-2' 'L0' 'L2'});