Using the Clinic.Admit data set, inherit style attributes across table cells. |
|
ods listing close; ods html path='?' body='?'; proc format; value $colsex 'F'='lipk' 'M'='vpab'; run; proc tabulate data=clinic.admit format=4.1; var age; class sex actlevel / style={background=vpag}; classlev sex / style={background=$colsex.}; table sex*actlevel*age,mean / box={style={background=vpag}}; keyword mean / style={background=vpag}; run; ods html close; ods listing; |
|
Copyright © 2002 SAS Institute Inc.,
Cary, NC, USA.
All rights reserved.