Date: Mon, 30 Aug 2010 10:18:11 -0400
Reply-To: Jeff <zhujp98@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Jeff <zhujp98@GMAIL.COM>
Subject: Re: how to suppress the output of proc mix
In-Reply-To: <OFFA147734.DCD5AA56-ON8625778F.004DCBF6-8625778F.004E2987@unmc.edu>
Content-Type: text/plain; charset=ISO-8859-1
Yes,
Thank you very much, ROBIN.
jp
On Mon, Aug 30, 2010 at 10:13 AM, Robin R High <rhigh@unmc.edu> wrote:
> Jeff,
>
> Add the noclprint option with a number following an = to indicate the
> factor(s) with that many levels or more should that not be printed on the
> class info (which I assume is to what you refer), e.g..
>
> proc mixed data=m2 noclprint=8;
>
> Robin High
> UNMC
>
>
>
>
>
> From:
> Jeff <zhujp98@GMAIL.COM>
> To:
> SAS-L@LISTSERV.UGA.EDU
> Date:
> 08/30/2010 09:05 AM
> Subject:
> how to suppress the output of proc mix
> Sent by:
> "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
>
>
>
> proc mixed data=m2;
> class ID elig_id order gender Race Marital JobClass;
> model y= x /solution;
> repeated order/type=cs sub=elig_id ;
> run;
>
> The sas output outputs the elig_id. I have 100000 elig_id. how can remove
> elig_id from the output?
>
> Thanks.
> Jeff
>
>
>
>
|