Previous Page | Next Page

The SGRENDER Procedure

Example 1: Generating a Graph from a Simple GTL Template


Sample library member: GSGRENDR

This example creates a simple StatGraph template by using Graph Template Language and then generates a graph from the template by using the SGRENDER procedure.

[Example SGRENDER Output]

 Note about code
proc template;
  define statgraph surface;
  begingraph;
	    layout overlay3d;
      surfaceplotparm x=height y=weight z=density;
	    endlayout;
  	endgraph;
  end;
run;
 Note about code
proc sgrender data=sashelp.gridded template=surface;
run;

Previous Page | Next Page | Top of Page