BookmarkSubscribeRSS Feed
jlclark
Calcite | Level 5

I am working on some table programs where I need to test several efficacy proc mixed models to see if they converge before deciding on the model to use.

For the testing portion of my code I need to turn off the log so that I do not get a warning about the model not converging.

I found some code that will do this when I run the program interactively (see below):

filename junk dummy;

proc printto log=junk;

run;

.--

<Your PROC codes>

...

proc printto;

run;

 

However when I run the program in batch mode on our unix system – the warning still shows up in the log.

Is there a way to shut off the log for a portion of my code that will work in batch mode?

2 REPLIES 2
SuryaKiran
Meteorite | Level 14

You can only suppress information in SAS log using ERRORS=, NONOTES, NOSOURCE. There is no option in SAS that turns off all warning messages.  

Thanks,
Suryakiran
Shmuel
Garnet | Level 18

There are some more system options like:

MSGLEVEL  DKRICOND  VNFERR

 

Better look at the documentation of those options.

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
  • 1921 views
  • 0 likes
  • 3 in conversation