Date: Thu, 30 Jul 2009 05:51:33 -0700
Reply-To: Paige Miller <paige.miller@KODAK.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Paige Miller <paige.miller@KODAK.COM>
Organization: http://groups.google.com
Subject: Re: Interactions
Content-Type: text/plain; charset=ISO-8859-1
On Jul 30, 5:55 am, oo...@YAHOO.COM (Orin Richards) wrote:
> I would like to know if PROC REG does interactions between continuous and catigorical variables and if how it does it.
You have to do this in PROC GLM or PROC MIXED. Here is a PROC GLM
example with class variable named GENDER and continuous variable named
X.
proc glm data=whatever;
class gender;
model y=x gender x*gender;
run; quit;
--
Paige Miller
paige\dot\miller \at\ kodak\dot\com