<?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: In proc glimmix, how can you view the estimates in the original scale? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915653#M360780</link>
    <description>&lt;P&gt;The model coefficients are based upon the appropriate model form for a Poisson model. I don't know what it means to ask for these on "the original scale".&lt;/P&gt;</description>
    <pubDate>Mon, 12 Feb 2024 19:16:46 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2024-02-12T19:16:46Z</dc:date>
    <item>
      <title>In proc glimmix, how can you view the estimates in the original scale?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915629#M360775</link>
      <description>&lt;PRE&gt;&lt;CODE class=""&gt;proc glimmix data=mydata;
class myclass mygroup myid;
model count_response = mycovariate myclass / dist=poisson link=log offset=log_time;
random intercept / subject=myid;
random intercept /
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;We would like to view the estimates in the original scale by exponentiating them. One way is the following:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;data exp_estimates;
set estimates;
exp_estimate = exp(parameter_estimate);
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But I was wondering if an statement can be added directly in proc glimmix.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 17:37:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915629#M360775</guid>
      <dc:creator>ANKH1</dc:creator>
      <dc:date>2024-02-12T17:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: In proc glimmix, how can you view the estimates in the original scale?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915633#M360778</link>
      <description>&lt;P&gt;Estimates of what?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 17:51:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915633#M360778</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-02-12T17:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: In proc glimmix, how can you view the estimates in the original scale?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915635#M360779</link>
      <description>fixed effects estimates</description>
      <pubDate>Mon, 12 Feb 2024 18:08:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915635#M360779</guid>
      <dc:creator>ANKH1</dc:creator>
      <dc:date>2024-02-12T18:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: In proc glimmix, how can you view the estimates in the original scale?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915653#M360780</link>
      <description>&lt;P&gt;The model coefficients are based upon the appropriate model form for a Poisson model. I don't know what it means to ask for these on "the original scale".&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 19:16:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915653#M360780</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-02-12T19:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: In proc glimmix, how can you view the estimates in the original scale?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915654#M360781</link>
      <description>&lt;P&gt;estimates are in log form from the poisson. For interpretation purposes, it is easier to interpret the estimates as counts and not log counts.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 19:24:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915654#M360781</guid>
      <dc:creator>ANKH1</dc:creator>
      <dc:date>2024-02-12T19:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: In proc glimmix, how can you view the estimates in the original scale?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915664#M360782</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/226521"&gt;@ANKH1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;estimates are in log form from the poisson. For interpretation purposes, it is easier to interpret the estimates as counts and not log counts.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Do you mean "predicted values"?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 19:45:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915664#M360782</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-02-12T19:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: In proc glimmix, how can you view the estimates in the original scale?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915685#M360787</link>
      <description>Estimates from the results table called "Solutions for Fixed Effects"</description>
      <pubDate>Mon, 12 Feb 2024 21:21:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/In-proc-glimmix-how-can-you-view-the-estimates-in-the-original/m-p/915685#M360787</guid>
      <dc:creator>ANKH1</dc:creator>
      <dc:date>2024-02-12T21:21:30Z</dc:date>
    </item>
  </channel>
</rss>

