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 (July 2009, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: sas-l@uga.edu
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


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