Usage Note 32993: Recommended syntax for producing ODS GRAPHICS output
The ODS Listing destination should be closed prior to producing ODS Graphics output. This destination should be reopened after ODS Graphics is turned off. Both the PATH= and FILE= options are required on the ODS HTML statement to ensure that the graphs and HTML file are stored in the same location.
Below is an example of the suggested syntax for generating graphs with ODS Graphics:
ODS LISTING CLOSE;
ODS HTML PATH='C:\temp' (URL=NONE) file='test.html';
ODS GRAPHICS ON;
PROC GENMOD DATA=SASHELP.CLASS;
MODEL HEIGHT=WEIGHT / SCALE=PEARSON;
ASSESS VAR=(WEIGHT)/RESAMPLE=10000
SEED=603708000
CRPANEL;
RUN;
ODS GRAPHICS OFF;
ODS HTML CLOSE;
ODS LISTING;
Operating System and Release Information
| SAS System | SAS/GRAPH | z/OS | 9.1 TS1M0 | |
| Microsoft® Windows® for 64-Bit Itanium-based Systems | 9.1 TS1M0 | |
| Microsoft Windows Server 2003 Datacenter 64-bit Edition | 9.1 TS1M0 | |
| Microsoft Windows Server 2003 Enterprise 64-bit Edition | 9.1 TS1M0 | |
| Microsoft Windows 2000 Advanced Server | 9.1 TS1M0 | |
| Microsoft Windows 2000 Datacenter Server | 9.1 TS1M0 | |
| Microsoft Windows 2000 Server | 9.1 TS1M0 | |
| Microsoft Windows 2000 Professional | 9.1 TS1M0 | |
| Microsoft Windows NT Workstation | 9.1 TS1M0 | |
| Microsoft Windows Server 2003 Datacenter Edition | 9.1 TS1M0 | |
| Microsoft Windows Server 2003 Enterprise Edition | 9.1 TS1M0 | |
| Microsoft Windows Server 2003 Standard Edition | 9.1 TS1M0 | |
| Microsoft Windows XP Professional | 9.1 TS1M0 | |
| 64-bit Enabled AIX | 9.1 TS1M0 | |
| 64-bit Enabled HP-UX | 9.1 TS1M0 | |
| 64-bit Enabled Solaris | 9.1 TS1M0 | |
| HP-UX IPF | 9.1 TS1M0 | |
| Linux | 9.1 TS1M0 | |
| OpenVMS Alpha | 9.1 TS1M0 | |
| Tru64 UNIX | 9.1 TS1M0 | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
This note contains the recommended syntax for producing ODS GRAPHICS output.
| Date Modified: | 2008-11-10 15:40:37 |
| Date Created: | 2008-08-15 14:27:13 |