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 (October 2008, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 6 Oct 2008 14:27:47 -0500
Reply-To:     "./ ADD NAME=Data _null_," <iebupdte@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "./ ADD NAME=Data _null_," <iebupdte@GMAIL.COM>
Subject:      Re: understanding regression equation output from gplot w/I = rc
              option.
Comments: To: "Pardee, Roy" <pardee.r@ghc.org>
In-Reply-To:  <587F57B26FAA8246A81D10D251EB8AB40447DE5D@EXCH07.GHCMASTER.GHC.ORG>
Content-Type: text/plain; charset=ISO-8859-1

i = rc

Isn't that Cubic model?

INTERPOL=R<type><0><CLM | CLI<50...99>> I=R<type><0><CLM | CLI<50...99>> specifies that a plot is a regression analysis. By default, regression lines are not forced through plot origins and confidence limits are not displayed.

Type specifies the type of regression. Specify one of these values for type:

L requests linear regression representing the regression equation

Y= 0 + 1 X

Q requests quadratic regression representing the regression equation

Y= 0 + 1 X + 2 X2

C requests cubic regression representing the regression equation

Y= 0 + 1 X+ 2 X 2 + 3 X3

On 10/6/08, Pardee, Roy <pardee.r@ghc.org> wrote: > Hey All, > > I'm doing a plot w/an overlaid quadratic regression line w/code like so: > > symbol > i = rc > ; > > proc gplot data = gnu ; > plot proportion_enrolled * years_past = enroll_type / regeqn > vaxis = axis1 > haxis = axis2 > vref = 0 to 1 by .10 ; > run ; > > This produces these NOTEs: > > NOTE: Regression equation : proportion_enrolled(enroll_type:IGP) = 0.982815 - > 0.164089*years_past + 0.01827*years_past^2 - 0.000869 . > NOTE: Regression equation : proportion_enrolled(enroll_type:Network) = 0.981553 - > 0.224816*years_past + 0.02563*years_past^2 - 0.00 . > > The same output is printed on the plot. But when I plug numbers into those equations to produce predicted values, they do not track the lines on the plots at all. In particular, that first eq would have the curve bending back up at about 6 years_past, which is very much not the case on the plot. I'm also having a hard time interpreting those last terms in each equation--shouldn't those be merged with the intercept? > > Finally, if I fit a quadratic model w/GLM one value of enroll_type at a time, I get very different parameters. Specifically, for that first eq I get: > > proportion_enrolled = 0.9599312804 -.1295297017*years_past + 0.0076288600*years_past^2 > > rather than: > > proportion_enrolled = 0.982815 -.164089 *years_past + 0.01827 *years_past^2 > > That eq *does* match the line printed on the plot. > > So it looks like the gplot equations are just wrong. What gives? > > Thanks! > > -Roy > > Roy Pardee > Research Analyst/Programmer > Group Health Center For Health Studies (Cancer Research Network) > (206) 287-2078 > Google Talk: rpardee >


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