| Date: | Wed, 13 Mar 2002 08:05:47 -0500 |
| Reply-To: | bramley.m@PG.COM |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | bramley.m@PG.COM |
| Subject: | Re: Outputing Mean Squares from Proc ANOVA |
| Content-type: | text/plain; charset=us-ascii |
|---|
SAS-L:
Even easier (if you have ODS):
/*
Tells ODS to create the ANOVA data set containing the ANOVA table.
*/
ODS Output ModelANOVA=ANOVA ;
Proc Anova <data set> <options> ;
<ANOVA specific statements> ;
Quit ;
Output Close ;
In the ANOVA data set will be a variable named MS (the data set also contains
the DF & SS variables).
Could SI make it easier?
Sincerely,
Michael Bramley
Cha Gheil!
Internet Mail Message
Received from host: malibu.cc.uga.edu
[128.192.1.103]
From: Prasad Ravi <prasad.s.ravi@HOUSEHOLD.COM> on 03/12/2002 08:21 PM GMT
Prasad Ravi To: SAS-L@LISTSERV.UGA.EDU
<prasad.s.ravi@HOUSEHOLD.COM> Cc: (bcc: Michael Bramley-M/PGI)
Subject: Re: Outputing Mean Squares from Proc
ANOVA
03/12/2002 03:21 PM
Please respond to
prasad.s.ravi@HOUSEHOLD.COM
Example:
proc anova noprint outstat=datanova;
class id test;
model y=id test;
by trial;
This outputs SS and DF so MS can be derived from them.
Jim Penny To: SAS-L@LISTSERV.UGA.EDU
<jpenny@CASTLEWOR cc:
LDWIDE.COM> Subject: Outputing Mean
Squares from Proc ANOVA
Sent by: "SAS(r)
Discussion"
<SAS-L@LISTSERV.U
GA.EDU>
03/12/2002 10:23
AM
Please respond to
Jim Penny
Hello folks,
Please forgive this question, but I'm far away from my usual library of SAS
documentation right now, and I have a student asking a about outputing mean
squares from Proc ANOVA to a SAS System file. Can that be done? If so,
could someone post the syntax?
Thanks,
jp
|