<?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: ODS and SAS GLM in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294536#M15693</link>
    <description>&lt;P&gt;That resolved the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Fri, 26 Aug 2016 23:13:22 GMT</pubDate>
    <dc:creator>jacksonan123</dc:creator>
    <dc:date>2016-08-26T23:13:22Z</dc:date>
    <item>
      <title>ODS and SAS GLM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294492#M15682</link>
      <description>&lt;P&gt;I am running SAS GLM &amp;nbsp;with the commands:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ODS Trace on/listing;&lt;/P&gt;&lt;P&gt;ODS output Estimates=stat1;&lt;/P&gt;&lt;P&gt;ODS output Fitstatistics=stat2;&lt;/P&gt;&lt;P&gt;Proc GLM:&lt;/P&gt;&lt;P&gt;etc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In base sas the ODS listing gives the names of the table names from GLM. &amp;nbsp;I get an output for Stat1 but the Fitstatistics must have changed in SAS University edition. &amp;nbsp;My question is how do I get the ODS listing to give me the proper names to be used?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2016 18:01:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294492#M15682</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2016-08-26T18:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: ODS and SAS GLM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294497#M15683</link>
      <description>&lt;P&gt;You can read about &lt;A href="https://communities.sas.com/t5/SAS-Statistical-Procedures/ODS-and-SAS-GLM/m-p/294492#M15682" target="_self"&gt;"How to find the ODS table names produced by any SAS procedure."&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The GLM procedure still produces the "FitStatistics" table. &amp;nbsp;However, since &lt;A href="http://blogs.sas.com/content/iml/2015/12/14/sas-studio-interactive-iml.html" target="_self"&gt;PROC GLM is an interactive procedure&lt;/A&gt;, the output will not be written until the procedure exits, so be sure to use the QUIT statement. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If QUIT does not resolve your problem, then please post the full&amp;nbsp;code and log.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2016 18:11:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294497#M15683</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-08-26T18:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: ODS and SAS GLM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294498#M15684</link>
      <description>&lt;P&gt;It did not work and this is my complete code.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ODS TRACE ON/LISTING;&lt;BR /&gt;*STATEMENT ALLOWS TABLE NAMES FROM PROC GLM TO BE LISTED;&lt;BR /&gt;ODS OUTPUT Estimates=STAT1;&lt;BR /&gt;ODS OUTPUT FITSTATISTICS=STAT2;&lt;BR /&gt;PROC GLM DATA=new1;&lt;BR /&gt;CLASS TRT;&lt;BR /&gt;MODEL CLnr=TRT/SS1 SS2 SS3 SS4;&lt;BR /&gt;LSMEANS TRT/PDIFF CL ALPHA=0.10;&lt;BR /&gt;ESTIMATE 'A VS B' TRT 1 -1;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Run;&lt;/P&gt;&lt;P&gt;Quit;&lt;BR /&gt;RUN;&lt;BR /&gt;Quit;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2016 18:17:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294498#M15684</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2016-08-26T18:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: ODS and SAS GLM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294501#M15685</link>
      <description>&lt;P&gt;That code looks correct. &amp;nbsp;There are not WARNINGs in the Log?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this. Exact same statement, but we can both run agains the same SASHELP.CLASS data set:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS TRACE ON/LISTING;
*STATEMENT ALLOWS TABLE NAMES FROM PROC GLM TO BE LISTED;
ODS OUTPUT Estimates=STAT1;
ODS OUTPUT FITSTATISTICS=STAT2;
PROC GLM DATA=sashelp.class;
CLASS Sex;
MODEL Height=Sex/SS1 SS2 SS3 SS4;
LSMEANS Sex/PDIFF CL ALPHA=0.10;
ESTIMATE 'M VS F' Sex 1 -1;
run;
quit;

proc print data=Stat2; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 26 Aug 2016 18:22:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294501#M15685</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-08-26T18:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: ODS and SAS GLM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294518#M15688</link>
      <description>&lt;P&gt;SAS UE is running SAS 9.4 if you want to refer to the documentation for ODS table names.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2016 20:03:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294518#M15688</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-08-26T20:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: ODS and SAS GLM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294536#M15693</link>
      <description>&lt;P&gt;That resolved the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2016 23:13:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/ODS-and-SAS-GLM/m-p/294536#M15693</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2016-08-26T23:13:22Z</dc:date>
    </item>
  </channel>
</rss>

