Differences between revisions 1 and 2
Revision 1 as of 2023-01-14 05:47:47
Size: 883
Comment:
Revision 2 as of 2023-01-14 05:48:32
Size: 929
Comment:
Deletions are marked like this. Additions are marked like this.
Line 26: Line 26:

Use `ods trace on` to examine ODS objects.

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)