October 2009
Beginner
636 pages
13h 35m
English
There's nothing new in the code presented in this example. All of these features have been shown in previous chapters.
The example is a UNIVARIATE procedure that produces some statistics and a graph. The results are sent to HTML, RTF, and a printer. The code for this example in Windows is as follows:
ODS HTML FRAME="OSframe.html"
BODY="OSbody.html"
CONTENTS="OScontents.html
PATH="c:\temp\" (URL=NONE);
ODS RTF FILE="c:\temp\OSfile.rtf";
ODS PDF FILE="c:\temp\OSfile.pdf";
proc univariate data=clinical;
var age;
symbol value=star;
probplot age / normal(mu=est sigma=est) pctlminor;
run;
ODS _ALL_ CLOSE;
The ODS HTML statement requests that an HTML page be created with a table of contents. It specifies a file location ...
Read now
Unlock full access