This example selects three output objects from a UNIVARIATE procedure step to send
to both the HTML destination and to the PRINTER destination.
Program
title;
options nodate nonumber;
ods html body='your_file.html';
ods printer ps file='your_file.ps';
ods select BasicMeasures
'Tests For Location'
Univariate.CityPop_90.ExtremeObs;
proc univariate data=statepop mu0=3.5;
var citypop_90 citypop_80;
run;
ods printer close;
Program Description
title;
Set the SAS system options. The OPTIONS statement controls several aspects of the ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.