<?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: Help with managing GLM output results in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Help-with-managing-GLM-output-results/m-p/213374#M39417</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I attach the PROC APPEND code inside the GLM macro or the GLM LOOP macro?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Jul 2015 03:14:25 GMT</pubDate>
    <dc:creator>kayne</dc:creator>
    <dc:date>2015-07-30T03:14:25Z</dc:date>
    <item>
      <title>Help with managing GLM output results</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-managing-GLM-output-results/m-p/213372#M39415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been tasked to create macros to run PROC GENMOD (given macro name as %genmod) in iterations so as to allow SAS to select variables for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%if i=1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%do &amp;amp;genmod &amp;amp;until &amp;amp;pvalue&amp;gt;0.05....&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Essentially, i will obtain the final type3 wald results after all the iterations. However, I will love to obtain and see the type3 wald results for &lt;SPAN style="color: #575757; text-decoration: underline;"&gt;&lt;STRONG&gt;each&lt;/STRONG&gt;&lt;/SPAN&gt; iterations as well. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13px; background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13px; background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I have been pulling my hair to figure how to incorporate a macro/data step. I tried to manipulate ODS OUTPUT but still fail to obtain a favourable result. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13px; background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em; background-color: #ffffff;"&gt;Thank you in advance for your help, kind person(s).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jul 2015 16:04:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-managing-GLM-output-results/m-p/213372#M39415</guid>
      <dc:creator>kayne</dc:creator>
      <dc:date>2015-07-29T16:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help with managing GLM output results</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-managing-GLM-output-results/m-p/213373#M39416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you figured out how to capture the data for a single iteration?&lt;/P&gt;&lt;P&gt;Once you have that then add an append to your loop so you keep the table for reach iteration.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jul 2015 16:50:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-managing-GLM-output-results/m-p/213373#M39416</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-07-29T16:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Help with managing GLM output results</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-managing-GLM-output-results/m-p/213374#M39417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Reeza,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I attach the PROC APPEND code inside the GLM macro or the GLM LOOP macro?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 03:14:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-managing-GLM-output-results/m-p/213374#M39417</guid>
      <dc:creator>kayne</dc:creator>
      <dc:date>2015-07-30T03:14:25Z</dc:date>
    </item>
  </channel>
</rss>

