Hi, I have the following script and I have to add titles at each graphs following the By variable in proc reg. Thnaks a lot, Barbara ods Graphics on; ods _all_ close; ods document name=QQDoc(write); proc reg data=trend plots=(fitplot(stats=none) ) ; model ln_meu=immunization_data ; by antigen dilution; title; run; quit; ods document close; ods listing; ODS RTF FILE="C:\Users\pomilba1\Desktop\Sas luca\SASResults\13011\prova.rtf"; proc document name=QQDoc; ods select fitplot; replay; run; quit; ODS rtf close; ods Graphics off;
... View more