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 (August 2007, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 14 Aug 2007 16:01:08 -0400
Reply-To:     Jerry Davis <jwd@UGA.EDU>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Jerry Davis <jwd@UGA.EDU>
Subject:      Re: factorial design
Comments: To: Marcelo Lamack <mar.lamack@HOTMAIL.COM>
In-Reply-To:  <BAY144-W386A64FBD773E139E38D9896DD0@phx.gbl>
Content-Type: text/plain; charset="US-ASCII"

Marcelo wrote:

> Dear all, in sas, how can I run a Factorial designs with a separate > control. I show my sas-data set bellow. > > data factorial; input A B rep response; /* A = 0 and B = 0 == control */

[ill formatted data deleted]

In the simplest case, your data could be analyzed thusly:

proc glm; class rep a b; model response = rep a b a*b; means a b / tukey lines; run;

Jerry -- Jerry Davis Experimental Statistics UGA, CAES, Griffin Campus


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