Previous Page | Next Page

The SGRENDER Procedure

PROC SGRENDER Statement


Identifies the data set that contains the plot variables and the StatGraph template. The statement also gives you the option to specify the name of the output object and the label for the output object.
Requirements: An input data set and a template are required.


Syntax

PROC SGRENDER TEMPLATE= statgraph-template <DATA= input-data-set>
<OBJECT= object-name>
<OBJECTLABEL="text-string" > ;

Required Arguments

TEMPLATE= statgraph-template

specifies a StatGraph template that defines one or more graphs. The SGRENDER procedure applies the StatGraph template to your data to create the output graphs.

Note:   Specifying a template that is not a StatGraph template is not supported. If you specify a non-StatGraph template, then the SGRENDER procedure might produce unpredictable results.  [cautionend]


Options

DATA=input-data-set

specifies the SAS data set that contains the variables to process. By default, the procedure uses the most recently created SAS data set.

OBJECT= object-name

specifies a name for the ODS output object.

Note:   To specify the filename of the output image, use the IMAGENAME= option in the ODS GRAPHICS statement.  [cautionend]

Alias: NAME=
Default: SGRender
OBJECTLABEL= "text-string"

specifies a description for the output image. The description identifies the image in the following locations:

  • the Results window

  • the alternate text for the image in HTML output

  • the table of contents that is created by the CONTENTS option in an ODS statement

The default description is "The SGRENDER Procedure".

Alias: DES=, DESCRIPTION=

Previous Page | Next Page | Top of Page