/* * This example played well with pharmaceutical folks. * no grid lines, lines between the headers/footers/body and no shading */ title "ODS RTF Destination Examples"; footnote "ODS RTF is production in version 8.1 of SAS Software"; proc template; define style pharma; parent=styles.rtf; style table from table / rules=groups frame=void cellspacing=0; replace headersAndFooters from cell / font = fonts('HeadingFont') foreground = colors('headerfg') background = white; end; run; ods rtf file="c:\temp\ods5.rtf" style=pharma; data a; input Odor Temperature GasLiquidRatio PackingHeight @@; cards; 66 -1 -1 0 39 1 -1 0 43 -1 1 0 49 1 1 0 58 -1 0 -1 17 1 0 -1 -5 -1 0 1 -40 1 0 1 65 0 -1 -1 7 0 1 -1 43 0 -1 1 -22 0 1 1 -31 0 0 0 -35 0 0 0 -26 0 0 0 ; run; proc glm; model Odor=Temperature GasLiquidRatio PackingHeight; run; proc rsreg; model Odor=Temperature GasLiquidRatio PackingHeight / lackfit; run; proc standard print mean=75 out=stanout; title2 'PROC STANDARD Output'; run; proc print data=stanout; title2 'PROC PRINT Output'; run; ods rtf close;