Click here to see the SAS code.
Click here to see the example.

---------------------------------------------------------------

ODS Layout is 'production' in SAS 9.4!

ODS Layout could *really* help you in creating custom dashboards,
info-graphics, and custom reports/documents.  It has the advantage over
Proc Greplay in that you can mix both graphical proc, and tabular-proc
output on the same page, and it will also work with non-traditional
graphics procs such as Proc Gtile and Proc SGplot (whereas greplay only 
works with traditional sas/graph procs such as gplot, gchart, gmap, and gslide).

-----

ODS Layout: modified/enhanced version of example from the SAS online doc:
SAS System Documentation >
 SAS Products >
 Base SAS >
 SAS 9.4 Output Delivery System: User's Guide >
 ODS Statements >
 Dictionary of ODS Language Statements

I changed the spacing of the info-boxes along the right edge a little.
Changed the pie chart to use a single color, and sort the slices.
Used proc print (rather than proc report) to create the table,
and pre-summarized the table data so it's in the same order as 
the pie slices, and has an 'other' row in the table (just like
the pie slice).

Back to Samples Index