<?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: proc tabulate- 2 dimensional summary table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-2-dimensional-summary-table/m-p/522601#M141910</link>
    <description>&lt;P&gt;Hi:&lt;BR /&gt;change the TABLE statement&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;TABLE.... ORIGIN &lt;FONT color="#FF0000"&gt;/ row=float&lt;/FONT&gt;;&lt;/FONT&gt; &lt;/STRONG&gt;&lt;BR /&gt;after ORIGIN and BEFORE the semi-colon.&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
    <pubDate>Wed, 19 Dec 2018 15:51:55 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2018-12-19T15:51:55Z</dc:date>
    <item>
      <title>proc tabulate- 2 dimensional summary table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-2-dimensional-summary-table/m-p/522452#M141845</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I want to create 2 dimensional summary table.&lt;/P&gt;
&lt;P&gt;What is the way to remove column with value " HORSEPOWER&amp;nbsp;" and remove column with &amp;nbsp;value " Mean" &amp;nbsp;from output?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tabulate data=sashelp.cars ;
class ORIGIN TYPE ;
var  HORSEPOWER;
table TYPE*HORSEPOWER*mean, ORIGIN;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Dec 2018 08:00:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-2-dimensional-summary-table/m-p/522452#M141845</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2018-12-19T08:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: proc tabulate- 2 dimensional summary table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-2-dimensional-summary-table/m-p/522453#M141846</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;table TYPE*HORSEPOWER=''*mean='', ORIGIN&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Dec 2018 08:29:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-2-dimensional-summary-table/m-p/522453#M141846</guid>
      <dc:creator>learsaas</dc:creator>
      <dc:date>2018-12-19T08:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: proc tabulate- 2 dimensional summary table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-2-dimensional-summary-table/m-p/522456#M141848</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;In your code solution I still see columns but they are empty.&lt;/P&gt;
&lt;P&gt;How can I remove the columns?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tabulate data=sashelp.cars ;
class ORIGIN TYPE ;
var  HORSEPOWER;
table TYPE*HORSEPOWER=''*mean='', ORIGIN;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Dec 2018 09:10:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-2-dimensional-summary-table/m-p/522456#M141848</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2018-12-19T09:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: proc tabulate- 2 dimensional summary table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-2-dimensional-summary-table/m-p/522601#M141910</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;change the TABLE statement&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;TABLE.... ORIGIN &lt;FONT color="#FF0000"&gt;/ row=float&lt;/FONT&gt;;&lt;/FONT&gt; &lt;/STRONG&gt;&lt;BR /&gt;after ORIGIN and BEFORE the semi-colon.&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Wed, 19 Dec 2018 15:51:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-2-dimensional-summary-table/m-p/522601#M141910</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-12-19T15:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: proc tabulate- 2 dimensional summary table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-2-dimensional-summary-table/m-p/522602#M141911</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;In your code solution I still see columns but they are empty.&lt;/P&gt;
&lt;P&gt;How can I remove the columns?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tabulate data=sashelp.cars ;
class ORIGIN TYPE ;
var  HORSEPOWER;
table TYPE*HORSEPOWER=''*mean='', ORIGIN;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps&lt;/P&gt;
&lt;PRE&gt;proc tabulate data=sashelp.cars ;
   class ORIGIN TYPE ;
   var  HORSEPOWER;
   table TYPE*HORSEPOWER=''*mean='', 
         ORIGIN
         /row=float
   ;
run;&lt;/PRE&gt;
&lt;P&gt;but the appearance with row=float can change depending on ODS destination.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Dec 2018 15:51:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-tabulate-2-dimensional-summary-table/m-p/522602#M141911</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-12-19T15:51:49Z</dc:date>
    </item>
  </channel>
</rss>

