Prev: X-axis value names font size in SAS 9.2
Next: Append updated Value at the end of the Excel Sheet
From: Dale McLerran on 5 Feb 2010 12:40 --- On Thu, 2/4/10, Church <H.J.Plat(a)UVA.NL> wrote: > From: Church <H.J.Plat(a)UVA.NL> > Subject: How to surpress log statement: "NOTE: ABSGCONV convergence criterion satisfied" > To: SAS-L(a)LISTSERV.UGA.EDU > Date: Thursday, February 4, 2010, 11:34 PM > Hi, > > I'm running many simulations, each of them containing 2 or 3 numerical > procedures (CALL NLPTR). > Now for each numerical action, the log reports "NOTE: ABSGCONV > convergence criterion satisfied". > Is there any way to surpress this note? I already set the output > option of CALL NLPTR to 0. > > Thanks. > Since this is a NOTE:, you could specify the SAS system option NONOTES prior to invoking IML. options nonotes; proc iml; ... call nlptr(...); ...; quit; I usually do not like to turn off NOTES, because you could lose some important information that the note refers to. However, in the case of a simulation where the volume of information generated to the log file can become quite large, you may not thoroughly examine the notes anyway. Dale --------------------------------------- Dale McLerran Fred Hutchinson Cancer Research Center mailto: dmclerra(a)NO_SPAMfhcrc.org Ph: (206) 667-2926 Fax: (206) 667-5977 ---------------------------------------
|
Pages: 1 Prev: X-axis value names font size in SAS 9.2 Next: Append updated Value at the end of the Excel Sheet |