October 2009
Beginner
636 pages
13h 35m
English
We have changed fonts, colors, and other formatting aspects of PROC TABULATE output. However, so far we've just been working with the basic output. This example shows how to add something new to the output: a graphic.
In this example, we are going to place a graphic image in the table box. A graphic can be added in the same way you modified the style attributes for the box in a previous example. The style attribute information is added with a STYLE= suboption on the BOX= option. The PREIMAGE= style attribute enables you to name an image that precedes the text in the cell.
ODS HTML BODY='tabpic.html' STYLE=sasweb; proc tabulate data=furniture; class Type Material; var Price; table Type='Table Type'* Material='Construction', ...
Read now
Unlock full access