| Date: | Fri, 31 Jan 1997 10:10:27 -0500 |
| Reply-To: | paigem@kodak.com |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | Paige Miller <paigem@KODAK.COM> |
| Organization: | Eastman Kodak Company |
| Subject: | Re: Basic SAS question - asymmetric factorial design |
| Content-Type: | text/plain; charset=us-ascii |
Todd Bailey wrote:
>
> I am designing an experiment and would like to use SAS to analyze the
> data. I need help setting up a 2x2x4 asymmetric factorial, and seem to
> be able to only go so far as a 2x2x3.
Its not entirely clear to me if you mean analyzing the results of a
2x2x4 experiment or setting up the design in the first place.
Assuming you mean setting up the design in the first place, PROC FACTEX
will do this for you.
proc factex;
factors x3/nlev=4;
output out=four_lev;
run;
factors x1 x2/nlev=2;
output out=final designrep=four_lev;
run;
quit;
--
+---------------------------------+------------------------------------+
| Paige Miller, Eastman Kodak Co. | "Nyuk Nyuk Nyuk" |
| PaigeM@kodak.com | -- Curly Howard |
+---------------------------------+------------------------------------+
| The opinions expressed herein do not necessarily reflect the |
| views of the author nor the views of the Eastman Kodak Company. |
+----------------------------------------------------------------------+
|