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;