<?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: Simple Tally Using Proc Tabulate in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Simple-Tally-Using-Proc-Tabulate/m-p/376043#M65372</link>
    <description>&lt;P&gt;Try&lt;/P&gt;
&lt;PRE&gt;proc tabulate data=sas_1.top_20;
class i2;
table i2 ,
         n;
run;
&lt;/PRE&gt;
&lt;P&gt;if you don't want any column heading&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc tabulate data=sas_1.top_20;
class i2;
table i2=' ' ,

         n=' ';
run;
&lt;/PRE&gt;</description>
    <pubDate>Fri, 14 Jul 2017 15:01:01 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2017-07-14T15:01:01Z</dc:date>
    <item>
      <title>Simple Tally Using Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simple-Tally-Using-Proc-Tabulate/m-p/375926#M65367</link>
      <description>&lt;P&gt;The following code produces a &lt;STRONG&gt;horizontal&lt;/STRONG&gt; tally -- each unique observation becomes a column heading, with number of occurrences below:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tabulate data=sas_1.top_20;
class i2;
table i2;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Does anyone know of a way to use Proc Tabulate and get a &lt;STRONG&gt;vertical&lt;/STRONG&gt; list, with tally number to the right of each categorical observation?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cats &amp;nbsp; 17&lt;/P&gt;
&lt;P&gt;Dogs &amp;nbsp; 12&lt;/P&gt;
&lt;P&gt;Birds &amp;nbsp; &amp;nbsp;9&lt;/P&gt;
&lt;P&gt;etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Nicholas Kormanik&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 06:08:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simple-Tally-Using-Proc-Tabulate/m-p/375926#M65367</guid>
      <dc:creator>NKormanik</dc:creator>
      <dc:date>2017-07-14T06:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Tally Using Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simple-Tally-Using-Proc-Tabulate/m-p/375971#M65369</link>
      <description>&lt;P&gt;If all you have are the two variables, why not use proc print ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc tabulate is usefull for summarizing data and reporting it as a table.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 11:37:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simple-Tally-Using-Proc-Tabulate/m-p/375971#M65369</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-07-14T11:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Tally Using Proc Tabulate</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simple-Tally-Using-Proc-Tabulate/m-p/376043#M65372</link>
      <description>&lt;P&gt;Try&lt;/P&gt;
&lt;PRE&gt;proc tabulate data=sas_1.top_20;
class i2;
table i2 ,
         n;
run;
&lt;/PRE&gt;
&lt;P&gt;if you don't want any column heading&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc tabulate data=sas_1.top_20;
class i2;
table i2=' ' ,

         n=' ';
run;
&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Jul 2017 15:01:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simple-Tally-Using-Proc-Tabulate/m-p/376043#M65372</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-07-14T15:01:01Z</dc:date>
    </item>
  </channel>
</rss>

