Date: Mon, 14 Nov 2005 08:42:34 -0500
Reply-To: "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Richard A. DeVenezia" <radevenz@IX.NETCOM.COM>
Subject: Re: About G3D Graph
Miguel de la Hoz wrote:
> Hi everyone:
>
> I tried some new code from SAS Web Page examples, but I don't still
> get the way to add each name to each (x,y,z). Furthermore I don't
> have with me any SAS Graph Guide to go any further.
>
> Any help will be welcomed. Many thaks in advance.
>
> Miguel.
...
> X = var1; Y = var2; z=var3;
...
> scatter var1*var2=var3/ size=2 annotate=AnnoName;
From the Online help
"
Syntax
SCATTER plot-request </ option(s)>;
plot-request must be
y*x=z
"
You have swapped the correspondence of y and x, thus the annotations are
occuring, but they are 'off the chart'. If var1 is X variable, it must come
after the * in the scatter statement.
Try
scatter var2*var1=var3/ size=2 annotate=AnnoName;
--
Richard A. DeVenezia
http://www.devenezia.com/
|