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
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
|