In this step, you generate
a graph that can be edited in the ODS Graphics Editor. To do this,
use the SGDESIGN procedure with an ODS destination statement.
In SAS, execute the
SGDESIGN procedure and reference the SGD file that you created for
the example. Here is sample code:
ods listing sge=on;
proc sgdesign sgd="C:\SGDFiles\companystock.sgd";
run;
Note the following:
-
To create an editable graph, specify
the SGE= ON option in an ODS destination statement.
-
For the SGD= value, specify the
path and name of the SGD file that you created for the example.
The example does not
need to specify the WORK.COMPANYSTOCK data set. By default, the SGDESIGN
procedure uses the data set that is defined in the SGD file. That
data set remains available as long as the SAS session is open.