The SGDESIGN
procedure complements the ODS Graphics Designer and is used to render
a graph that has been saved as an SGD file. The procedure enables
you to run one or more graphs in batch mode and render the graphs
to any ODS destination. You can run graphs using different variables
against the same or different data.
The basic
syntax of the procedure is as follows:
PROC SGDESIGN SGD='SGD-file-name' <options>;
ods html file="CarsLattice.html";
proc sgdesign sgd="C:\SGDFiles\CarsLattice.sgd";
run;
ods html close;
You can
specify a data set as an option to the procedure. By default, the
procedure uses the data set that was used to create the SGD file.
For more
information about the SGDESIGN procedure, see the
SAS/GRAPH:
Statistical Graphics Procedures Guide.