Print the combined data set. This PROC PRINT step prints the data set EnergyOutput
that contains both BY groups. The output is added to the current body file,
your_body_file_2.html.
proc print data=energyoutput noobs;
title 'Combined Output Data Set';
run;
Close all of the open destinations. The ODS _ALL_ CLOSE statement closes all open
ODS output destinations. To return ODS to its default setup, the ODS HTML statement
opens the HTML destination.
ods _all_ close;
ods HTML;
HTML Output
The following HTML output shows the output data set that is created by the ODS
OUTPUT statement.
Output 6.39Combined Data Set
Example 1: Creating a Combined Output Data ...
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.