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

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/


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