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 02:58:16 +0100
Reply-To:     Miguel de la Hoz <miguel_hoz@YAHOO.ES>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Miguel de la Hoz <miguel_hoz@YAHOO.ES>
Subject:      About G3D Graph
Content-Type: text/plain; charset=iso-8859-1

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.

data proof1;

input name $ var1 var2 var3;

datalines;

client1 0.00013 1629.37 0.14992

client2 0.17379 2855.63 0.30001

client3 0.00000 2052.60 0.77780

client4 0.17949 5565.96 0.29997

client5 0.17647 5178.74 0.15990

client6 0.08823 8202.23 0.14737

client7 0.02318 1373.92 0.28511

client8 0.16989 2405.44 0.28735

client9 0.00000 2623.46 0.09289

client10 0.00000 14954.38 0.80259

client11 0.00000 1129.11 1.00000

;

run;

Data AnnoName;

Set proof1;

XSYS = '2'; YSYS = '2'; zsys='2';

X = var1; Y = var2; z=var3;

FUNCTION='LABEL';

TEXT=Name;

POSITION='2';

run;

title 'Graph 3-D';

footnote j=r 'Down';

proc g3d data=proof1;

scatter var1*var2=var3/ size=2 annotate=AnnoName;

run;

quit;

---------------------------------

Correo Yahoo! Comprueba qué es nuevo, aquí http://correo.yahoo.es


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