Valid in: | Anywhere |
Category: | ODS: Output Control |
Default: | ON |
Interaction: | |
Note: | Beginning with SAS 9.3, ODS Graphics is enabled by default in the UNIX and Windowing environments. |
See: | For information about common tasks for managing ODS Graphics output, see SAS Graph Template Language: User's Guide. |
If the value specified by the DISCRETEMAX= option is exceeded by any plot layer in the graph, that layer will not be drawn and a warning message is issued.
ods graphics on; ods graphics;When you specify one of these statements before your procedure invocation, Base,
export DISPLAY=<ip_address>:0
The ip_address is
the TCP/IP address, or the name of a UNIX terminal. Usually, the
IP address of the UNIX system where SAS is running would be used.
If you do not set the DISPLAY variable, then you get an error message
in the SAS log.
ods graphics / imagename="regplot" outputfmt=gif;The assigned name REGPLOT is treated as a "root" name and the first output created is named REGPLOT. Subsequent graphs are named REGPLOT1, REGPLOT2, and so on, with an increasing index counter. All graphs in this example will be GIF images.