<?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 A question about the PROC GENMOD in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/A-question-about-the-PROC-GENMOD/m-p/371196#M19458</link>
    <description>&lt;P&gt;I'am using the PROC GENMOD like this :&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC GENMOD DATA = LIFDAT;
CLASS MFG;
MODEL LIFETIME = MFG / DIST=GAMMA LINK=LOG TYPE3;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but I dont understand why an&lt;SPAN class="short_text"&gt;&lt;SPAN class=""&gt; estimated parameter equals zero &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class=""&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9910iACEAD1D8E929926D/image-size/original?v=1.0&amp;amp;px=-1" alt="pic.PNG" title="pic.PNG" border="0" /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class=""&gt;What does it means ? can we change that ?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Jun 2017 10:21:45 GMT</pubDate>
    <dc:creator>John4</dc:creator>
    <dc:date>2017-06-28T10:21:45Z</dc:date>
    <item>
      <title>A question about the PROC GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/A-question-about-the-PROC-GENMOD/m-p/371196#M19458</link>
      <description>&lt;P&gt;I'am using the PROC GENMOD like this :&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC GENMOD DATA = LIFDAT;
CLASS MFG;
MODEL LIFETIME = MFG / DIST=GAMMA LINK=LOG TYPE3;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but I dont understand why an&lt;SPAN class="short_text"&gt;&lt;SPAN class=""&gt; estimated parameter equals zero &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class=""&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9910iACEAD1D8E929926D/image-size/original?v=1.0&amp;amp;px=-1" alt="pic.PNG" title="pic.PNG" border="0" /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class=""&gt;What does it means ? can we change that ?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2017 10:21:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/A-question-about-the-PROC-GENMOD/m-p/371196#M19458</guid>
      <dc:creator>John4</dc:creator>
      <dc:date>2017-06-28T10:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: A question about the PROC GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/A-question-about-the-PROC-GENMOD/m-p/371224#M19459</link>
      <description>&lt;P&gt;See&lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_introcom_sect002.htm" target="_self"&gt; "Parameterization of Model Effects" &lt;/A&gt;in the SAS documentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you use a classification variable, one of the levels is redundant. In the GLM parameterization (the default for PROC GENMOD)&amp;nbsp;the parameter for that level is set to zero.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2017 11:46:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/A-question-about-the-PROC-GENMOD/m-p/371224#M19459</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-06-28T11:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: A question about the PROC GENMOD</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/A-question-about-the-PROC-GENMOD/m-p/371234#M19460</link>
      <description>&lt;P&gt;In the CLASS statement you can add an option to change the parameterization of your model to the EFFECT, this may be what you are looking for.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;class mfg/param=effect;&lt;/PRE&gt;
&lt;P&gt;but please note the resulting model is the same, and the predictions are the same, just the way the model is parameterized has changed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this situation, you may be more interested in the LSMEANS, which sound like what you really want to look at here instead of the model effects, and the LSMEANS don't change depending on the parameterization of the model.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2017 12:08:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/A-question-about-the-PROC-GENMOD/m-p/371234#M19460</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-06-28T12:08:58Z</dc:date>
    </item>
  </channel>
</rss>

