<?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: output tables from proc glm in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/output-tables-from-proc-glm/m-p/239166#M14872</link>
    <description>&lt;P&gt;Your code is backwards, it's ODS table name and then what you'd like to call it:&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;ods table ParameterEstimates=param;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Dec 2015 15:27:39 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2015-12-14T15:27:39Z</dc:date>
    <item>
      <title>output tables from proc glm</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/output-tables-from-proc-glm/m-p/239152#M14870</link>
      <description>&lt;P&gt;Dear everyone,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to save 2 temporary tables from PROC GLM. I would like to save the Parameter Estimates Table and also another table with columns pertaining to fitted values, standard errors, confidence limits, residuals etc. I have the following code, but I am not getting any of these 2 tables in the work folder. I also checked the log window, but there is no error message.&amp;nbsp;Can someone please help me? Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data mydat;&lt;BR /&gt;input group $ days yy;&lt;BR /&gt;datalines;&lt;BR /&gt;A 0 7.4&lt;BR /&gt;A 2 7.2&lt;BR /&gt;A 4 7.4&lt;BR /&gt;A 6 6.9&lt;BR /&gt;A 8 6.8&lt;BR /&gt;A 10 6.9&lt;BR /&gt;A 12 6.7&lt;BR /&gt;A 14 6.4&lt;BR /&gt;A 16 6.3&lt;BR /&gt;B 0 8.1&lt;BR /&gt;B 2 8&lt;BR /&gt;B 4 7.9&lt;BR /&gt;B 6 7.8&lt;BR /&gt;B 8 7.7&lt;BR /&gt;B 10 7.9&lt;BR /&gt;B 12 7.5&lt;BR /&gt;B 14 7.4&lt;BR /&gt;B 16 7.2&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods table param=ParameterEstimates;&lt;BR /&gt;proc glm data=mydat ;&lt;BR /&gt;class group;&lt;BR /&gt;model yy= group days days*group/noint alpha=0.05 ss1; &lt;BR /&gt;output out=mytable p=fitted stdr=stderr lclm=CIlower uclm=CIupper lcl=PIlower UCL=PIupper rstudent=rstudent residual=resid;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2015 14:34:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/output-tables-from-proc-glm/m-p/239152#M14870</guid>
      <dc:creator>statz</dc:creator>
      <dc:date>2015-12-14T14:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: output tables from proc glm</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/output-tables-from-proc-glm/m-p/239153#M14871</link>
      <description>&lt;P&gt;ods output parameterestimates=params;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2015 14:51:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/output-tables-from-proc-glm/m-p/239153#M14871</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2015-12-14T14:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: output tables from proc glm</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/output-tables-from-proc-glm/m-p/239166#M14872</link>
      <description>&lt;P&gt;Your code is backwards, it's ODS table name and then what you'd like to call it:&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;ods table ParameterEstimates=param;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2015 15:27:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/output-tables-from-proc-glm/m-p/239166#M14872</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-12-14T15:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: output tables from proc glm</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/output-tables-from-proc-glm/m-p/239168#M14873</link>
      <description>&lt;P&gt;Thanks a lot &amp;nbsp;Reeza!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2015 15:32:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/output-tables-from-proc-glm/m-p/239168#M14873</guid>
      <dc:creator>statz</dc:creator>
      <dc:date>2015-12-14T15:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: output tables from proc glm</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/output-tables-from-proc-glm/m-p/239171#M14874</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Your code is backwards, it's ODS table name and then what you'd like to call it:&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;ods table ParameterEstimates=param;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Shouldn't that say ods output and not ods table?&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2015 15:40:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/output-tables-from-proc-glm/m-p/239171#M14874</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2015-12-14T15:40:29Z</dc:date>
    </item>
  </channel>
</rss>

