LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (February 2000, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 9 Feb 2000 10:16:41 -0800
Reply-To:     Dieter Ayers <dieter@UNBC.CA>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Dieter Ayers <dieter@UNBC.CA>
Organization: University of Northern B.C.
Subject:      post hocs
Content-Type: TEXT/PLAIN; charset=US-ASCII

Hi all, I've got a nested ANOVA model, and I am trying to do a post hoc comparison of the means of the factor within each nest. I haven't found a way to get SAS to calculate any of the standard tests (SNK, Scheffe, etc). Is there an easy SAS command that will do such a thing, or should I start coding it myself? The code below works for non-nested models.

I'm under the impression that comparing the means within each nest is valid statistically (cf. Hicks "Fundamental concepts in the design of expts." 4th ed, p183).

Any comments would be greatly appreciated.

Dieter

INPUT site type Y; cards; ... ; proc glm; class site type; model Y=site type(site); means type(site)/snk; run;


Back to: Top of message | Previous page | Main SAS-L page