<?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 How can I suppress categories with low frequencies from SA in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-suppress-categories-with-low-frequencies-from-SA/m-p/859269#M339500</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to suppress categories with low frequency values (less than 10) from the output of proc freq. Any tips to me me out would be appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc freq order= freq ; table outcome_coded&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Feb 2023 21:36:10 GMT</pubDate>
    <dc:creator>ama220</dc:creator>
    <dc:date>2023-02-16T21:36:10Z</dc:date>
    <item>
      <title>How can I suppress categories with low frequencies from SA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-suppress-categories-with-low-frequencies-from-SA/m-p/859269#M339500</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to suppress categories with low frequency values (less than 10) from the output of proc freq. Any tips to me me out would be appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc freq order= freq ; table outcome_coded&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 21:36:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-suppress-categories-with-low-frequencies-from-SA/m-p/859269#M339500</guid>
      <dc:creator>ama220</dc:creator>
      <dc:date>2023-02-16T21:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: How can I suppress categories with low frequencies from SA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-suppress-categories-with-low-frequencies-from-SA/m-p/859282#M339507</link>
      <description>&lt;P&gt;Generally when I have such a requirement I send the output to a data set, which I then have for reference when the inevitable question comes back later, and just display the desired values in a report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc freq data=whatever order=freq noprint;
   tables outcome_coded / out=outcome_freqs outcum;
run;

Proc print data=outcome_freqs noobs;
   where count&amp;gt;10; /* or whatever limit*/
run;&lt;/PRE&gt;
&lt;P&gt;The OUTCUM option means to include the cumulative count and percents. By default they do not appear in the out= data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another approach if you want to show that the category existed but just suppress the count could be done but how you would address the percent values.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 22:56:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-suppress-categories-with-low-frequencies-from-SA/m-p/859282#M339507</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-02-16T22:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: How can I suppress categories with low frequencies from SA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-can-I-suppress-categories-with-low-frequencies-from-SA/m-p/859396#M339544</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 14:39:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-can-I-suppress-categories-with-low-frequencies-from-SA/m-p/859396#M339544</guid>
      <dc:creator>ama220</dc:creator>
      <dc:date>2023-02-17T14:39:06Z</dc:date>
    </item>
  </channel>
</rss>

