Date: Tue, 6 Nov 2007 09:49:27 +0530
Reply-To: Deovrat Kakde <Deovrat.Kakde@SAS.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Deovrat Kakde <Deovrat.Kakde@SAS.COM>
Subject: Re: How to generate a linear graph
In-Reply-To: A<c2192a610711051847i3fb42944r97a6a7022e6427b1@mail.gmail.com>
Content-Type: text/plain; charset="us-ascii"
You can use a Overlay option in Proc Plot.
proc plot data=Dataset;
plot age*age='+' age*derivedVariable='o'
/overlay;
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
SAS_learner
Sent: Tuesday, November 06, 2007 8:18 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: How to generate a linear graph
Hello guys ,
I need to check consistency of derived variable say Age (Check to see
that there no abnormalities) in the data for that reason I am planning
to plot a graph any Ideas how to do it. I tried Graph and Go but I got a
linear graph it is Plotting Age versus Age but I need to check how
derived variable is scattered across linear curve.
thanks
|