BookmarkSubscribeRSS Feed
Peter_Y
Calcite | Level 5

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

 

2 REPLIES 2
Peter_Y
Calcite | Level 5

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

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2505 views
  • 0 likes
  • 2 in conversation