<?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: Should I use &amp;quot;Offset&amp;quot; or add a &amp;quot;rate&amp;quot; variable in the data set for Poisson r in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/325657#M17194</link>
    <description>Thanks, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10078"&gt;@JacobSimonsen&lt;/a&gt;. This is very helpful.</description>
    <pubDate>Wed, 18 Jan 2017 12:45:11 GMT</pubDate>
    <dc:creator>jj02148</dc:creator>
    <dc:date>2017-01-18T12:45:11Z</dc:date>
    <item>
      <title>Should I use "Offset" or add a "rate" variable in the data set for Poisson regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/324342#M17132</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ran into a Poisson regression analysis issue. My data contain "counts" for an event and "days" for the event. I am fosusing on the "rate", which is counts/days. Usually people would use Poisson regression to fit the rate data by doing:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Model Event = treat /offset=log(days).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I am wondering if it makes sense to add a "rate" variable in the data set by doing: event_rate = events/days, and then fit the Poisson model:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Model event_rate = treat.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your comments and help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 17:10:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/324342#M17132</guid>
      <dc:creator>jj02148</dc:creator>
      <dc:date>2017-01-12T17:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Should I use "Offset" or add a "rate" variable in the data set for Poisson r</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/324430#M17136</link>
      <description>&lt;P&gt;Unless your number of days varies very little, you should stick with the offset model to get valid inferences.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you decide to go with event_rate, it should be defined as event/days*meanDays, where meanDays is the mean number of days in your data.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 23:10:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/324430#M17136</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-01-12T23:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: Should I use "Offset" or add a "rate" variable in the data set for Poisson r</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/324436#M17137</link>
      <description>&lt;P&gt;Hi PG,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the comment. That is very helpful. Just for my personal education. Why the offset model gives better inference? Mathematically the offset model and the event_rate are the same, right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;log(u/t) = alpha+beta*x --&amp;gt; log(u) - log(t) = alpha+beta*x --&amp;gt; log(u) = log(t) + alpha+beta*x&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 23:56:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/324436#M17137</guid>
      <dc:creator>jj02148</dc:creator>
      <dc:date>2017-01-12T23:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Should I use "Offset" or add a "rate" variable in the data set for Poisson r</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/324457#M17138</link>
      <description>&lt;P&gt;The models look the same, but the likelihood equations aren't. The estimates will be the same (for offset and event_rate= event/days models) but the standard error of the estimates will differ. Look at this small simulation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data a;
call streaminit(7576);
rate = 10;
do days = 10, 100;
    logDays = log(days);
    do i = 1 to 20;
        event = rand("Poisson", rate*days);
        event_rate1 = event / days;
        event_rate2 = event / days * mean(10, 100);
        event_rate3 = event / days * 1000;
        output;
        end;
    end;
run;

ods select ParameterEstimates(persist);

title "Estimate of log number per day with Offset";
proc glimmix data=a;
model event = / dist=poisson offset=logDays solution;
run;

title "Estimate of log rate per day";
proc glimmix data=a;
model event_rate1 = / dist=poisson solution;
run;

title "Estimate of log rate per 55 days";
proc glimmix data=a;
model event_rate2 = / dist=poisson solution;
run;

title "Estimate of log rate per 1000 days";
proc glimmix data=a;
model event_rate3 = / dist=poisson solution;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;                     Estimate of log number per day with Offset       

                               The GLIMMIX Procedure

                                Parameter Estimates

                                  Standard
         Effect       Estimate       Error       DF    t Value    Pr &amp;gt; |t|
         Intercept      2.3091    0.006720       39     343.62      &amp;lt;.0001
		 
                            Estimate of log rate per day                          

                                Parameter Estimates

                                  Standard
         Effect       Estimate       Error       DF    t Value    Pr &amp;gt; |t|
         Intercept      2.2992     0.05008       39      45.91      &amp;lt;.0001
		 
                          Estimate of log rate per 55 days                        

                                Parameter Estimates

                                  Standard
         Effect       Estimate       Error       DF    t Value    Pr &amp;gt; |t|
         Intercept      6.3065    0.006753       39     933.83      &amp;lt;.0001
		 
                         Estimate of log rate per 1000 days                       

                                Parameter Estimates

                                  Standard
         Effect       Estimate       Error       DF    t Value    Pr &amp;gt; |t|
         Intercept      9.2070    0.001584       39    5813.16      &amp;lt;.0001
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2017 05:10:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/324457#M17138</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-01-13T05:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: Should I use "Offset" or add a "rate" variable in the data set for Poisson r</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/324563#M17143</link>
      <description>Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/14779"&gt;@PG&lt;/a&gt;, this is very helpful!</description>
      <pubDate>Fri, 13 Jan 2017 14:20:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/324563#M17143</guid>
      <dc:creator>jj02148</dc:creator>
      <dc:date>2017-01-13T14:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: Should I use "Offset" or add a "rate" variable in the data set for Poisson r</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/324590#M17146</link>
      <description>&lt;P&gt;Again, thanks&amp;nbsp;@PG. Sorry for having so many questions. Your simulation is very helpful. However, if one wants to pick an estimate, which one should he use?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems that using "Offset" gives pretty similar "estimate" as "Rate" does, although the SEs are different. But if using "Rate*Mean(days)", it gives completely different "estimate" but similar SEs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried my real data using PROC GENMOD on both Offset model and Rate model. It seems that the two give pretty close results in terms of "estimate" and "SE".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are my code snippets:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Poisson model with offset&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc genmod data=final;
 title "BV-003 Part 2 - Poisson Model";
 class ptno treat;

 model numcr = treat /type3 dist=poi offset=logdayct;
 repeated subject=ptno;

 estimate 'D vs A' treat -1 1 0/exp;
 estimate 'E vs A' treat -1 0 1/exp;
 estimate 'D vs E' treat 0 1 -1/exp;
run;&lt;/PRE&gt;&lt;P&gt;2. Poisson model with rate data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc genmod data=final;
 title "BV-003 Part 2 - Poisson Model on the Cramp/Day Ratio";
 class ptno treat;

 model crp_day = treat /type3 dist=poi;
 repeated subject=ptno;

 estimate 'D vs A' treat -1 1 0/exp;
 estimate 'E vs A' treat -1 0 1/exp;
 estimate 'E vs D' treat 0 1 -1/exp;
run;&lt;/PRE&gt;&lt;P&gt;And here are the outputs:&lt;/P&gt;&lt;P&gt;For 1,&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/6701i925A27EDA0F96BA8/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="1.PNG" title="1.PNG" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For 2,&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/6702iA45EB90810C42AEA/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="2.PNG" title="2.PNG" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2017 15:07:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/324590#M17146</guid>
      <dc:creator>jj02148</dc:creator>
      <dc:date>2017-01-13T15:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Should I use "Offset" or add a "rate" variable in the data set for Poisson r</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/325598#M17193</link>
      <description>&lt;P&gt;I think that you can model the rate and get exactly same estimates and standard errors as if you model the count. But, the person-years should then be used in the weight statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The two proc genmod statements below seems to give exactly same output.&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; test;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;do&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; i=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;to&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;100&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt; pyrs=rand(&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'uniform'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;,&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;,&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;5&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt; a=rand(&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'bernoulli'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;,&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;0.5&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt; y=rand(&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'poisson'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;,pyrs*exp(&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;2&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;+a*&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;));&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;logpyrs=log(pyrs);&lt;/P&gt;
&lt;P&gt;rate=y/pyrs;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;end&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;genmod&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=test;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;class&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; a(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;ref&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"0"&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;model&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; y=a/&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;dist&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=poisson &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;link&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=log &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;offset&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=logpyrs;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;genmod&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=test;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;class&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; a(&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;ref&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"0"&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;model&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; rate=a/&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;dist&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=poisson &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;link&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=log;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;weight&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; pyrs;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 09:31:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/325598#M17193</guid>
      <dc:creator>JacobSimonsen</dc:creator>
      <dc:date>2017-01-18T09:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Should I use "Offset" or add a "rate" variable in the data set for Poisson r</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/325657#M17194</link>
      <description>Thanks, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10078"&gt;@JacobSimonsen&lt;/a&gt;. This is very helpful.</description>
      <pubDate>Wed, 18 Jan 2017 12:45:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/325657#M17194</guid>
      <dc:creator>jj02148</dc:creator>
      <dc:date>2017-01-18T12:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Should I use "Offset" or add a "rate" variable in the data set for Poisson r</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/325663#M17195</link>
      <description>&lt;P&gt;its because the expression for the likelihood function λ&lt;SUP&gt;x&lt;/SUP&gt; e&lt;SUP&gt;-pyrs*λ&lt;/SUP&gt; is the same as (λ&lt;SUP&gt;x/pyrs&lt;/SUP&gt; e&lt;SUP&gt;-λ&lt;/SUP&gt;)&lt;SUP&gt;pyrs&lt;/SUP&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 13:13:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Should-I-use-quot-Offset-quot-or-add-a-quot-rate-quot-variable/m-p/325663#M17195</guid>
      <dc:creator>JacobSimonsen</dc:creator>
      <dc:date>2017-01-18T13:13:59Z</dc:date>
    </item>
  </channel>
</rss>

