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 2011, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 31 Oct 2011 18:58:27 -0400
Reply-To:     SUBSCRIBE SAS-L JingJu11 S <jingju11@HOTMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         SUBSCRIBE SAS-L JingJu11 S <jingju11@HOTMAIL.COM>
Subject:      an issue in 9.3 sgplot -loess

Did anyone notice the different results between the following two codes, event though i bet the two pictures should be same:

proc sgplot data =have; loess x =x y =y/group =group; run;

proc sort data =have out =have_s; by group; run;

proc sgplot data =have_s; loess x =x y =y /group =group; run; quit;

my x is in ( 1 2 3) , group in ( a b), and y is continuous.

JingJu


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