= SAS ODS =

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

<<TableOfContents>>

----



== 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 [[SAS/Univariate#Extreme_Obs|the UNIVARIATE procedure]].

----



== FreqPlot ==

See [[SAS/Freq#Plot|the FREQ procedure]].



----
CategoryRicottone