Hello. Suppose I use proc mixed to show Studentized Residuals and create .rtf file. If I want to change color and maybe some other graph options for each plots (Labels, Tick values). I can try to use option UNPACK, and then somehow by using SGRENDER and proc template and layout lattice edit all possible options and show output datasets on Layout/Graph. But I don't know how to show Right-Bottom Corner (table with statistics [these are ODS OUTPUT fitstatistics and descriptive statistics obtained using proc means on ODS OUTPUT StudentByPredicted ]). How I can solve this? Or maybe there is exists some way to edit style of StudentPanel? Something like: ODS RTF BODY="..." style=styles.MyStyle;
ods graphics on;
proc mixed data=inds plots=StudentPanel; class &class.; model &model.;
run;
ods graphics off;
ODS RTF CLOSE Could you help me? Also Tried ODS LAYOUT, but it seems that it doesn't work with RTF.
... View more