<?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 What does ods table means? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/What-does-ods-table-means/m-p/956633#M373513</link>
    <description>&lt;P&gt;I see ods table statement in a post of&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;:&lt;A href="https://communities.sas.com/t5/SAS-Programming/proc-freq-one-way-table-for-multiple-vars-export-to-data-set/td-p/924663" target="_blank"&gt;proc freq one way table for multiple vars- export to data set - SAS Support Communities&lt;/A&gt; . Is ods table an alias for ods output?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use this piece of code and both ods table and ods output work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods table onewayfreqs=onewayfreqs1;
ods output onewayfreqs=onewayfreqs2;
proc freq data=sashelp.class;
  tables name;
run;
ods table close;
ods output close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;onewayfreqs1&lt;/CODE&gt; and&amp;nbsp;&lt;CODE class=" language-sas"&gt;onewayfreqs2&lt;/CODE&gt; have the same contents.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jan 2025 08:47:18 GMT</pubDate>
    <dc:creator>whymath</dc:creator>
    <dc:date>2025-01-20T08:47:18Z</dc:date>
    <item>
      <title>What does ods table means?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-ods-table-means/m-p/956633#M373513</link>
      <description>&lt;P&gt;I see ods table statement in a post of&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;:&lt;A href="https://communities.sas.com/t5/SAS-Programming/proc-freq-one-way-table-for-multiple-vars-export-to-data-set/td-p/924663" target="_blank"&gt;proc freq one way table for multiple vars- export to data set - SAS Support Communities&lt;/A&gt; . Is ods table an alias for ods output?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use this piece of code and both ods table and ods output work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods table onewayfreqs=onewayfreqs1;
ods output onewayfreqs=onewayfreqs2;
proc freq data=sashelp.class;
  tables name;
run;
ods table close;
ods output close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;onewayfreqs1&lt;/CODE&gt; and&amp;nbsp;&lt;CODE class=" language-sas"&gt;onewayfreqs2&lt;/CODE&gt; have the same contents.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2025 08:47:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-ods-table-means/m-p/956633#M373513</guid>
      <dc:creator>whymath</dc:creator>
      <dc:date>2025-01-20T08:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: What does ods table means?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-ods-table-means/m-p/956666#M373521</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/270406"&gt;@whymath&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/270406"&gt;@whymath&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Is ods table an alias for ods output?&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, it is.&lt;/P&gt;
&lt;P&gt;"Proof":&lt;/P&gt;
&lt;PRE&gt;22    &lt;FONT size="4"&gt;&lt;STRONG&gt;ods table&lt;/STRONG&gt;&lt;/FONT&gt; print=test;
23    proc print data=sashelp.class;
24    run;

ERROR: PROC PRINT does not support the &lt;STRONG&gt;&lt;FONT size="4"&gt;ODS OUTPUT statement&lt;/FONT&gt;.&lt;/STRONG&gt;
NOTE: There were 19 observations read from the data set SASHELP.CLASS.
NOTE: PROCEDURE PRINT used (Total process time):
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It appears to be an &lt;EM&gt;undocumented&lt;/EM&gt; alias (at least I haven't found it in the SAS 8 or SAS 9 documentation) which is rarely used and fairly old (e.g., it occurs in &lt;A href="https://communities.sas.com/t5/SAS-Programming/OUTPUT-WEIBULL-STD/m-p/97622/highlight/true#M257853" target="_blank" rel="noopener"&gt;this 2012 posting&lt;/A&gt;). Hence, better don't use it as it may be deprecated in future SAS releases. Also think of other people reading your code and stumbling across it.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2025 15:26:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-ods-table-means/m-p/956666#M373521</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2025-01-20T15:26:51Z</dc:date>
    </item>
  </channel>
</rss>

