SAS ODS

The Output Delivery System enables the filtering of output from SAS.


Usage

All output can be toggled on and off.

ods results off;
ods results on;

All procedure titles can be toggled on and off.

ods noproctitle;
ods proctitle;

Use ods trace on to examine ODS objects.


Export

To PDF

ods pdf file="path/to/file"
        startpage=no style=STYLE pdftoc=1;

ods proclabel "Entry on table of contents";
proc print data=mydata.mytable noobs;
  var VAR1 VAR2;
run;

ods pdf close;

Use NOBOOKMARKGEN on the ODS statement to suppress generation of a 'table of contents'.


ExtremeObs

See the UNIVARIATE procedure.


FreqPlot

See the FREQ procedure.


CategoryRicottone

SAS/ODS (last edited 2023-01-14 05:48:32 by DominicRicottone)