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 (January 1997, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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. | +----------------------------------------------------------------------+


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