Date: Fri, 18 Apr 2003 07:39:50 -0400
Reply-To: Candy Kane <candykane@CANDYLAND.ORG>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Candy Kane <candykane@CANDYLAND.ORG>
Organization: http://extra.newsguy.com
Subject: Re: PROC MIXED
Content-Type: text/plain; charset=us-ascii
On 18 Apr 03 05:52:43 GMT, quandagarland@YAHOO.COM (Quanda Garland)
wrote:
>How can I output only means to an output dataset in PROC MIXED.
Depends what you mean by "means". AFAIK you can't output the observed
sample means, only least-squares-adjusted means.
To do this, specify
LSMEANS group;
ODS OUTPUT LSMEANS=myset;
CK
|