<?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 PROC GENMOD: How to interpret the beta estimates of a model with a square root power link in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GENMOD-How-to-interpret-the-beta-estimates-of-a-model-with/m-p/602657#M76450</link>
    <description>&lt;P&gt;Greetings!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm running a generalized linear model (GLM) in SAS via PROC GENMOD.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've specified a gamma distribution since my Y response variable is skewed to the right &amp;amp; is non-negative. I've specified a square root power link (since I found that transforming my Y via the square root improves the skewed distribution). I have 2 X predictor variables, X1 and X2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code looks something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC GENMOD DATA=SAMPLE;&lt;/P&gt;&lt;P&gt;MODEL Y = X1 X2 / DIST=GAMMA LINK=POWER(0.5);&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS gives me an output of the 2 regression estimates for X1 &amp;amp; X2. For example:&lt;/P&gt;&lt;P&gt;X1:&amp;nbsp; 0.64&lt;/P&gt;&lt;P&gt;X2:&amp;nbsp; -0.08&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would I go about interpreting these estimates in terms of my Y variable? Can I just say that 1 unit change in X1 results in a increase of 0.64 in Y (assuming that my specific link function has already taken care of the transformation)? Or do I have to take the square of the estimates to obtain the original un-transformed Y?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for your help!&lt;/P&gt;</description>
    <pubDate>Fri, 08 Nov 2019 01:14:19 GMT</pubDate>
    <dc:creator>MigMaster12</dc:creator>
    <dc:date>2019-11-08T01:14:19Z</dc:date>
    <item>
      <title>PROC GENMOD: How to interpret the beta estimates of a model with a square root power link</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GENMOD-How-to-interpret-the-beta-estimates-of-a-model-with/m-p/602657#M76450</link>
      <description>&lt;P&gt;Greetings!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm running a generalized linear model (GLM) in SAS via PROC GENMOD.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've specified a gamma distribution since my Y response variable is skewed to the right &amp;amp; is non-negative. I've specified a square root power link (since I found that transforming my Y via the square root improves the skewed distribution). I have 2 X predictor variables, X1 and X2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code looks something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC GENMOD DATA=SAMPLE;&lt;/P&gt;&lt;P&gt;MODEL Y = X1 X2 / DIST=GAMMA LINK=POWER(0.5);&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SAS gives me an output of the 2 regression estimates for X1 &amp;amp; X2. For example:&lt;/P&gt;&lt;P&gt;X1:&amp;nbsp; 0.64&lt;/P&gt;&lt;P&gt;X2:&amp;nbsp; -0.08&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would I go about interpreting these estimates in terms of my Y variable? Can I just say that 1 unit change in X1 results in a increase of 0.64 in Y (assuming that my specific link function has already taken care of the transformation)? Or do I have to take the square of the estimates to obtain the original un-transformed Y?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for your help!&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 01:14:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-GENMOD-How-to-interpret-the-beta-estimates-of-a-model-with/m-p/602657#M76450</guid>
      <dc:creator>MigMaster12</dc:creator>
      <dc:date>2019-11-08T01:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: PROC GENMOD: How to interpret the beta estimates of a model with a square root power link</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/PROC-GENMOD-How-to-interpret-the-beta-estimates-of-a-model-with/m-p/602676#M76453</link>
      <description>&lt;P&gt;Add the output option:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Output pred=Pred;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So that you can view the prediction table. Take a look at the table and try a few observations with how you’ve hypothesized the link function to work. Report back with what you find!&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;here are some helpful docs:&amp;nbsp;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_genmod_sect062.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/63962/HTML/default/viewer.htm#statug_genmod_sect062.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-unison&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 04:56:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/PROC-GENMOD-How-to-interpret-the-beta-estimates-of-a-model-with/m-p/602676#M76453</guid>
      <dc:creator>unison</dc:creator>
      <dc:date>2019-11-08T04:56:54Z</dc:date>
    </item>
  </channel>
</rss>

