<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Suppressing notes in Log in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-notes-in-Log/m-p/850178#M336021</link>
    <description>&lt;P&gt;Thank you all for helping.&lt;/P&gt;
&lt;P&gt;HHC&lt;/P&gt;</description>
    <pubDate>Sat, 17 Dec 2022 04:58:56 GMT</pubDate>
    <dc:creator>hhchenfx</dc:creator>
    <dc:date>2022-12-17T04:58:56Z</dc:date>
    <item>
      <title>Suppressing notes in Log</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-notes-in-Log/m-p/849982#M335964</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I run the below code and SAS return note like:&lt;/P&gt;
&lt;PRE&gt;Likelihood Optimization Algorithm Converged in 2 Iterations.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;5020 options notes ;&lt;BR /&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Is there any way for SAS not to print these lines out?&lt;/P&gt;
&lt;P&gt;I use "option nonotes" the the 2nd lines are not print, but the first line still there.&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;HHC&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc ucm data=have2 noprint;
by tic;
    id n interval=obs;
    model value;
    irregular;
    level variance=0 noest;
    slope plot=smooth;
    forecast lead=0 outfor=for plot=decomp;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2022 02:54:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppressing-notes-in-Log/m-p/849982#M335964</guid>
      <dc:creator>hhchenfx</dc:creator>
      <dc:date>2022-12-16T02:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: Suppressing notes in Log</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-notes-in-Log/m-p/850048#M335991</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nonotes;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think this can turn off the output from the procedure about how many iterations were needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Generally, it is a bad idea to turn off the NOTES, as they provide useful information. The only times I would consider turning off notes is if you have created a program and thoroughly debugged it and certified that it works properly. But for iterative procedures such as PROC UCM, I would still recommend you leave the NOTES on, as it may work fine with this data set and the PROC will not work so well with other data sets and the NOTES will be handy.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2022 11:29:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppressing-notes-in-Log/m-p/850048#M335991</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-12-16T11:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Suppressing notes in Log</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-notes-in-Log/m-p/850074#M335994</link>
      <description>&lt;P&gt;If you really don't want this note in the log (or anything else) you can take the EXTREME rout of using PROC PRINTTO to redirect the log (temporarily).&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I fully endorse&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;'s recommendation.&amp;nbsp; I never use PROC PRINTTO to send the log to the bit bucket, and I (almost) never set NONOTES.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In fact just last week I got bit my a utility macro I wrote a few years ago where I was arrogant enough to set NONOTES because it had been 'debugged' and I didn't want it to clutter the log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Notes are your friends.&amp;nbsp; Warnings and errors are even better, like family. : )&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2022 14:15:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppressing-notes-in-Log/m-p/850074#M335994</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2022-12-16T14:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Suppressing notes in Log</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppressing-notes-in-Log/m-p/850178#M336021</link>
      <description>&lt;P&gt;Thank you all for helping.&lt;/P&gt;
&lt;P&gt;HHC&lt;/P&gt;</description>
      <pubDate>Sat, 17 Dec 2022 04:58:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppressing-notes-in-Log/m-p/850178#M336021</guid>
      <dc:creator>hhchenfx</dc:creator>
      <dc:date>2022-12-17T04:58:56Z</dc:date>
    </item>
  </channel>
</rss>

