From: Kumar Mainali on
In the hope somebody would explain this to me, I am resending it.

Thanks in advance,
Kumar

On Wed, Dec 23, 2009 at 3:27 AM, Kumar Mainali <kpmainali(a)gmail.com> wrote:

> Hello,
>
> Below is my code for creating boxplot of savings in each of the days of the
> week. I would like to display y axis value for each of the quartiles. Any
> help?
>
> Thanks,
> Kumar
>
>
> *proc* *sort* data = alllist;
>
> by day;
>
> *run*;
>
> goptions reset = all;
>
> *proc* *boxplot* data = alllist;
>
> plot saving*day;
>
> *run*;
>
>



--
Section of Integrative Biology
University of Texas at Austin
Austin, Texas 78712, USA
From: Tom Abernathy on
Use a format statement to format your DAY variable.
FORMAT DAY YYQ.;

On Jan 2, 4:55 pm, kpmain...(a)GMAIL.COM (Kumar Mainali) wrote:
> In the hope somebody would explain this to me, I am resending it.
>
> Thanks in advance,
> Kumar
>
>
>
>
>
> On Wed, Dec 23, 2009 at 3:27 AM, Kumar Mainali <kpmain...(a)gmail.com> wrote:
> > Hello,
>
> > Below is my code for creating boxplot of savings in each of the days of the
> > week. I would like to display y axis value for each of the quartiles. Any
> > help?
>
> > Thanks,
> > Kumar
>
> > *proc* *sort* data = alllist;
>
> >   by day;
>
> > *run*;
>
> > goptions reset = all;
>
> > *proc* *boxplot* data = alllist;
>
> >   plot saving*day;
>
> > *run*;
>
> --
> Section of Integrative Biology
> University of Texas at Austin
> Austin, Texas 78712, USA- Hide quoted text -
>
> - Show quoted text -

From: Arthur Tabachneck on
Kumar,

Does the following provide what you need?

http://www.mofeel.net/1169-comp-soft-sys-sas/21343.aspx

HTH,
Art
--------
On Sat, 2 Jan 2010 15:55:47 -0600, Kumar Mainali <kpmainali(a)GMAIL.COM>
wrote:

>In the hope somebody would explain this to me, I am resending it.
>
>Thanks in advance,
>Kumar
>
>On Wed, Dec 23, 2009 at 3:27 AM, Kumar Mainali <kpmainali(a)gmail.com> wrote:
>
>> Hello,
>>
>> Below is my code for creating boxplot of savings in each of the days of
the
>> week. I would like to display y axis value for each of the quartiles. Any
>> help?
>>
>> Thanks,
>> Kumar
>>
>>
>> *proc* *sort* data = alllist;
>>
>> by day;
>>
>> *run*;
>>
>> goptions reset = all;
>>
>> *proc* *boxplot* data = alllist;
>>
>> plot saving*day;
>>
>> *run*;
>>
>>
>
>
>
>--
>Section of Integrative Biology
>University of Texas at Austin
>Austin, Texas 78712, USA