![]() Chapter Contents |
![]() Previous |
![]() Next |
| The Complete Guide to the SAS Output Delivery System |
The ODS HTML statement, which generates the HTML files, can create
Note:
This example uses file names that may not be valid
in all operating environments. To successfully run the example in your operating
environment, you may need to change the file specifications. See Alternative ODS HTML Statements for Running Examples in Different Operating Environments. ![[cautend]](../common/images/cautend.gif)
/* Create HTML files. */
ods html file='odshtml-body.htm'
contents='odshtml-contents.htm'
page='odshtml-page.htm'
frame='odshtml-frame.htm';
proc univariate data=statepop mu0=3.5; var citypop_90 noncitypop_90; title; run;
/* Close the HTML destination. */ ods html close;
Frame File Created by the ODS HTML Statement.
| Select an entry in the table of contents to see the corresponding procedure results. |
|
For more information about creating HTML output, see ODS HTML Statement. You can see many examples of HTML output in SAS Procedures Guide online documentation.
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.