Sample 25603: Tilt a surface plot using PROC G3D
This example uses PROC G3D to modify a default surface plot by tilting the surface plot 15° toward you and adding a side wall.
These sample files and code examples are provided by SAS Institute
Inc. "as is" without warranty of any kind, either express or implied, including
but not limited to the implied warranties of merchantability and fitness for a
particular purpose. Recipients acknowledge and agree that SAS Institute shall
not be liable for any damages whatsoever arising out of their use of this material.
In addition, SAS Institute will provide no support for the materials contained herein.
This sample code uses PROC G3D to modify a default surface plot by tilting the surface plot 15° toward you and adding a side wall.
The graphics output in the Results tab was produced using SAS® 9.2. Submitting the sample code with releases of SAS prior to SAS 9.2 might produce different results.
/* Set the graphics environment */
goptions reset=all border cback=white htitle=12pt;
/* Create the HAT data set */
data hat;
do x=-5 to 5 by 0.25;
do y=-5 to 5 by 0.25;
z=sin(sqrt(x*x+y*y));
output;
end;
end;
run;
/* Define a title for the plot */
title1 'Surface Plot of HAT Data Set';
/* Generate the plot */
proc g3d data=work.hat;
plot y*x=z / side tilt=15;
run;
quit;
These sample files and code examples are provided by SAS Institute
Inc. "as is" without warranty of any kind, either express or implied, including
but not limited to the implied warranties of merchantability and fitness for a
particular purpose. Recipients acknowledge and agree that SAS Institute shall
not be liable for any damages whatsoever arising out of their use of this material.
In addition, SAS Institute will provide no support for the materials contained herein.

This example uses PROC G3D to modify a default surface plot by tilting the surface plot 15° toward you and adding a side wall.
| Type: | Sample |
| Topic: | SAS Reference ==> Procedures ==> G3D Query and Reporting ==> Creating Reports ==> Graphical ==> Graph Types ==> Plots ==> Surface
|
| Date Modified: | 2005-09-22 03:03:14 |
| Date Created: | 2005-05-23 14:18:22 |
Operating System and Release Information
| SAS System | SAS/GRAPH | All | 8 TS M0 | n/a |