Procedure Features |
PLOT statement
options:
|
CTOP= |
|
GRID |
|
ROTATE= |
|
ZMAX= |
|
ZMIN= | |
|
Data set: |
SASHELP.LAKE
|
Sample library
member: |
GTDROTAT
|
The
surface plot shown in this example illustrates enhancements
to the axes and the presentation. The plot illustrates a grid originating
from the tick marks. A Z- axis range increase raised the plot above
the horizontal X-Y plane. CTOP= green changed the top color and ROTATE= rotated
the plot 45 degrees toward the viewer.
|
goptions reset=all border; |
|
title "Rotated Surface Plot";
footnote j=r "GTDROTAT"; |
|
proc g3d data=sashelp.lake;
plot length*width=depth/
ctop=green
grid
rotate=45
zmax=5
zmin=-50;
run;
quit; |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.