Hello:
I need to run a serious of logistic regression and save the results in rtf/pdf.
%macro regression(var); ods exclude all; proc logistic data=cohort descending; model outcome= &var; strata match; ods output ParameterEstimates=ps;
run;
proc print data=ps;
run; %mend; ods rtf file='output.rtf' bodytitle;
title 'first regression'; %regression(var1); title 'second regression';
%regression(var2); ods rtf close;
The challenge is that the following text is always displayed in the output file, although ods exclude all is used.
The LOGISTIC Procedure |
Conditional Analysis |
This seems to be associated with the bodytitle option. However, it is required to put the title in the body. Another option is to use
ods rtf exclude all;
However, if rtf destination is not open, the above code will generate an error. I am wondering whether there is a generic solution to this problem?
Thanks,
Peter
Thanks. I tried noptitle and it works partially that the title of proc logistic
The LOGISTIC Procedure |
is removed. However, the subtitle for the strata statement
Conditional Analysis |
is still displayed.
Anyway to suppress it?
Thanks,
Peter
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.