The SGRENDER Procedure |
Featured in: | Defining Dynamic Variables |
The DYNAMIC statement defines values for dynamic variables that are used in your StatGraph template.
You can either specify variables on multiple DYNAMIC statements, or specify all of your variables on a single DYNAMIC statement.
Note: If your template uses dynamic variables to specify required attributes, and you do not define values for those variables in a DYNAMIC statement, then the SGRENDER procedure might produce errors.
DYNAMIC variable-assignment(s); |
Required Options |
specifies the values for one or more dynamic variables. The variables that you assign must also be declared in a DYNAMIC statement within the StatGraph template.
You can specify either a numeric value or a quoted text string. For example, the following statement defines one string variable and one numeric variable:
dynamic region="Europe" limit=3000;
Details |
Some special dynamic variables can be declared and referenced in a StatGraph template and do not need to be assigned in the DYNAMIC statement of the SGRENDER procedure:
_LIBNAME_ |
represents the name of the library that contains the data set. |
_MEMNAME_ |
represents the name of the library member that contains the data set. |
_BYLINE_ |
represents the complete BY line, when you specify a BY statement. |
_BYVAR_ |
represents the name of the first BY variable, when you specify a BY statement. |
_BYVARn_ |
represents the name of the nth BY variable, when you specify a BY statement with multiple variables. |
_BYVAL_ |
represents the first BY value, when you specify a BY statement. |
_BYVALn_ |
represents the value of the nth BY variable, when you specify a BY statement with multiple variables. |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.