<?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 genmod and output in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-genmod-and-output/m-p/446072#M111862</link>
    <description>&lt;P&gt;Pick the table from the list of ODS tables for proc genmod. You seem to want table GEEEmpPEst&amp;nbsp;, so add the statement&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ODS select GEEEmpPEst&amp;nbsp;;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to your proc code.&lt;/P&gt;</description>
    <pubDate>Fri, 16 Mar 2018 04:34:16 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2018-03-16T04:34:16Z</dc:date>
    <item>
      <title>proc genmod and output</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-genmod-and-output/m-p/446069#M111860</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to do proc genmod. But I want only "Analysis Of Parameter Estimates" result, not other results such as&amp;nbsp;Residues,&lt;SPAN&gt; Resraw, Reschi, Resdev, Stdreschi, Stdresdev,Reslik .&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;something like the following table. Anyone knows how to get it? thanks a lot.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;Analysis Of GEE Parameter Estimates&lt;/DIV&gt;&lt;DIV align="center"&gt;Empirical Standard Error EstimatesParameter &amp;nbsp; Estimate StandardError 95% Confidence Limits Z Pr&amp;nbsp;&amp;gt;&amp;nbsp;|Z| &lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;Intercept&lt;/TD&gt;&lt;TD&gt;3.6125&lt;/TD&gt;&lt;TD&gt;3.6825&lt;/TD&gt;&lt;TD&gt;-3.6052&lt;/TD&gt;&lt;TD&gt;10.8301&lt;/TD&gt;&lt;TD&gt;0.98&lt;/TD&gt;&lt;TD&gt;0.3266&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ingots;
   input Heat Soak Notready Total @@;
   lnTotal= log(Total);
   datalines;
7 1.0 0 10  14 1.0 0 31  27 1.0 1 56  51 1.0 3 13
7 1.7 0 17  14 1.7 0 43  27 1.7 4 44  51 1.7 0  1
7 2.2 0  7  14 2.2 2 33  27 2.2 0 21  51 2.2 0  1
7 2.8 0 12  14 2.8 0 31  27 2.8 1 22  51 4.0 0  1
7 4.0 0  9  14 4.0 0 19  27 4.0 1 16
;

proc genmod data=ingots;
   class Heat Soak / param=ref;
   model Notready=Heat Soak / offset=lnTotal dist=Poisson link=log;
   exact Heat Soak / joint estimate;
   exactoptions statustime=10;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Mar 2018 04:09:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-genmod-and-output/m-p/446069#M111860</guid>
      <dc:creator>xiangpang</dc:creator>
      <dc:date>2018-03-16T04:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: proc genmod and output</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-genmod-and-output/m-p/446072#M111862</link>
      <description>&lt;P&gt;Pick the table from the list of ODS tables for proc genmod. You seem to want table GEEEmpPEst&amp;nbsp;, so add the statement&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ODS select GEEEmpPEst&amp;nbsp;;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to your proc code.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Mar 2018 04:34:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-genmod-and-output/m-p/446072#M111862</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2018-03-16T04:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: proc genmod and output</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-genmod-and-output/m-p/446139#M111886</link>
      <description>&lt;P&gt;Thanks for your reply. I have two more questions. Do you know what is the difference between "ParameterEstimates" and "&lt;SPAN&gt;GEEEmpPEst &lt;/SPAN&gt;". The output results are different.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another question, if I have several output result from the genmod analysis with same file name and same variables, what is the best way to add them into one table?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Mar 2018 12:51:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-genmod-and-output/m-p/446139#M111886</guid>
      <dc:creator>xiangpang</dc:creator>
      <dc:date>2018-03-16T12:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: proc genmod and output</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-genmod-and-output/m-p/446347#M111973</link>
      <description>&lt;P&gt;I don't do GEEs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Give your output tables different meaningful names, and then concatenate them all with&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;data allTables;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;set TableA TableB ... indsname=dsn;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;tableName = scan(dsn, 2);&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Mar 2018 21:03:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-genmod-and-output/m-p/446347#M111973</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2018-03-16T21:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: proc genmod and output</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-genmod-and-output/m-p/446374#M111986</link>
      <description>&lt;P&gt;Thanks a lot. Have a good weekend.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Mar 2018 23:22:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-genmod-and-output/m-p/446374#M111986</guid>
      <dc:creator>xiangpang</dc:creator>
      <dc:date>2018-03-16T23:22:30Z</dc:date>
    </item>
  </channel>
</rss>

