Friday, 2 October 2015

Ch19 - Output Delivery System

Chapter 19 (Output Delivery System)



One of the most important changes in SAS, the introduction of Output Delivery System called as ODS. Each SAS procedure produce its unique output . This output was difficult to incorporate into other documents, such as Microsoft Office Word orMicrosoft Office PowerPoint.The Output Delivery System changed all that. Now each SAS procedure creates outputobjects that can be sent to such destinations as HTML, RTF, PDF, and SAS data sets.
 Not only can you send your SAS output to all of these formats, you can, if you are brave enough, customize the output’s fonts, colors, size, and
layout.

Chapter#19 and Problem#1

Run the following program, sending the output to an HTML file. Issue the
appropriate commands to prevent SAS from creating a listing file. See Chapter 16,
Problem 2, for the note about creating formats for this data set.
title "Sending Output to an HTML File";
proc print data=learn.college(obs=8) noobs;
run;
proc means data=learn.college n mean maxdec=2;
var GPA ClassRank;
run;

Solution:
Result:


Chapter#19 and Problem#3

Run the same two procedures as shown in Problem 1, except use the JOURNAL (or

FANCYPRINTER) style instead of the default style.

Solution:

Result:









No comments:

Post a Comment