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

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

This is my SAS/Graph version of the graph from p. 141 of the following publication:
(or see screen_capture in 1st link)

   Screen Capture
   http://www.treasury.gov/initiatives/eesa/agreements/auto-reports/ChryslerRestructuringPlan.pdf#page=141

I use proc gplot's y*x=z syntax to overlay the plot lines, and use a different color for each.
Then, rather than using a color legend, I annotate the company logos at the end of each line.

I use the symbol statement to turn on 'pointlabels' for Chrysler's line.

And I use annotate to show the % improvement in little gray 'flage' for Chrysler's
last six data points.

The table in the top/right corner is all created using annotate, and the 
data values used in the table are programmatically calculated using proc sql.


Back to Samples Index