SAS author's tip: PROC G3D

0

The title of this week's SAS author's tip amuses me. My non-programming mind is conjuring up a seriously cool PROC that leaps off the page. Or something like that. In reality, when looking for a potential tip in Wendy Bohnenkamp's and Jackie Iverson's book SAS Graphics for Java, I spotted many intriguing-looking graphs. Written for programmers of all levels, this book also contains a lot of tips for creating SAS Graphs-such as this week's excerpt on PROC G3D.

If you like what you see here, head over to the catalog to read more about SAS Graphics for Java including a free chapter from the book.

The following excerpt is from SAS authors Wendy Bohnenkamp and Jackie Iverson and their book "SAS Graphics for Java: Examples Using SAS AppDev Studio and the Output Delivery System" Copyright © 2007, SAS Institute Inc., Cary, North Carolina, USA. ALL RIGHTS RESERVED. (please note that results may vary depending on your version of SAS software)

PROC G3D

The following parameters, when used with the SAS procedure G3D, enable you to modify some text that is output with the graph.


proc g3d data=work.giris;
scatter petallen*petalwid=sepallen / ctext=red;
run;


proc g3d data=work.giris;
scatter petallen*petalwid=sepallen / noaxis;
run;


proc g3d data=work.giris;
scatter petallen*petalwid=sepallen / nolabel;
run;

Share

About Author

Shelly Goodin

Social Media Specialist, SAS Publications

Shelly Goodin is SAS Publications' social media marketer and the editor of "SAS Publishing News". She’s worked in the publishing industry for over thirteen years, including seven years at SAS, and enjoys creating opportunities for fans of SAS and JMP software to get to know SAS Publications' many offerings and authors.

Comments are closed.

Back to Top