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

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register 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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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