<?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: Choose divisor=  in linear trend tests in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808648#M39792</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where did you get or have read that information?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To me,&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=" aa-term "&gt;DIVISOR=&lt;SPAN class=" aa-argument"&gt;value-list&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="xisDoc-paraSimpleFirst"&gt;&lt;SPAN&gt;just specifies a list of values by which to divide the coefficients so that&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;fractional coefficients can be entered as integer numerators.&lt;BR /&gt;&lt;BR /&gt;Nothing more, nothing less.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="xisDoc-paraSimpleFirst"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="xisDoc-paraSimpleFirst"&gt;&lt;SPAN&gt;Koen&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 19 Apr 2022 18:17:04 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2022-04-19T18:17:04Z</dc:date>
    <item>
      <title>Choose divisor=  in linear trend tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808561#M39790</link>
      <description>&lt;P&gt;Dear users and experts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a ordered categorical SES variable, ranked 0 ("disadvantaged") to 4 ("very privileged"). I use it as such in Modified Poisson regression using PROC GENMOD, to get Risk Ratios (RR).&lt;/P&gt;&lt;P&gt;I would like to compute one model with : SES as categorical (classic !) and with a trend test (in the same model) like :&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC GENMOD data=pop ;&amp;nbsp;&lt;/P&gt;&lt;P&gt;class sex SES (ref='4') /param=glm ;&amp;nbsp;&lt;/P&gt;&lt;P&gt;model tobacco(ref='0')=sex age SES /dist=POISSON link=log ;&amp;nbsp;&lt;/P&gt;&lt;P&gt;repeated subject =id/type=unstr ;&amp;nbsp;&lt;/P&gt;&lt;P&gt;estimate "linear approx. of SES" SES&amp;nbsp; &amp;nbsp;2&amp;nbsp; 1&amp;nbsp; 0&amp;nbsp; -1&amp;nbsp; -2&amp;nbsp; /divisor=1 ;&amp;nbsp;&lt;/P&gt;&lt;P&gt;estimate "linear approx. of SES" SES&amp;nbsp; &amp;nbsp;2&amp;nbsp; 1&amp;nbsp; 0&amp;nbsp; -1&amp;nbsp; -2&amp;nbsp; /divisor=10 ;&amp;nbsp;&lt;/P&gt;&lt;P&gt;run ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I consider SES=4 (the "very privileged") as a reference and there seems to be a linear trend test : the beta coefficients for SES are, relative to the reference :&amp;nbsp;&lt;/P&gt;&lt;P&gt;SES=4&amp;nbsp; =&amp;gt; beta4= 0 by construction&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SES=3&amp;nbsp; =&amp;gt; beta3= -0.1219&amp;nbsp; &amp;nbsp;(giving a risk ratio RR(3/4)=exp(-0.1219)=0.885)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SES=2&amp;nbsp; =&amp;gt;betat2= -0.0958&amp;nbsp; &amp;nbsp;(giving a RR(2/4)=0.909)&lt;/P&gt;&lt;P&gt;SES=1&amp;nbsp; =&amp;gt;beta1= -0.2166&amp;nbsp; &amp;nbsp; (giving a RR(1/4)=0.805)&lt;/P&gt;&lt;P&gt;SES=0&amp;nbsp; =&amp;gt; beta1= -0.3827&amp;nbsp; &amp;nbsp;(giving RR(0 vs 4)=0.6820)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I take the exponential of the betas, I get the Risk Ratios (no problem so far).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The restults for the estimates are :&lt;/P&gt;&lt;P&gt;DIVISOR=1 : beta_d_1= -0.8602&lt;/P&gt;&lt;P&gt;DIVISOR=10 : beta_d_10= -0.0860.&lt;/P&gt;&lt;P&gt;This is correct as far as I understand the documentation.&lt;/P&gt;&lt;P&gt;But if&amp;nbsp; DIVISOR=1 was correct, that is if there was a slope of&amp;nbsp;beta_d_1=-0.8602 then the RR(0 vs 4) would be approximately exp(-0.8602)^4=0.4231, which is far away from the "truth" RR(0/4)=0.682.&lt;/P&gt;&lt;P&gt;On the opposite, the result for DIVISOR=10 is : RR(0/4)=exp(0.0860)^4=0.71, that is very close to the "truth".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In addition, when I compute various estimates obtain with various values of divisor= , the DIVISOR=10 provides betas and RR that minimize the quadratic differences between betas obtained from the classic estimation and those obtained from the estimate statement. In short : the command&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&amp;nbsp; &amp;nbsp;estimate "linear approx. of SES" SES&amp;nbsp; &amp;nbsp;2&amp;nbsp; 1&amp;nbsp; 0&amp;nbsp; -1&amp;nbsp; -2&amp;nbsp; /divisor=10 ;&amp;nbsp; &amp;nbsp; " provides the best linear approximation of the effect of SES.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why is it so ? Why are the estimated linear RR obtained with divisor=1 so far away from the "truth" and why are those obtained with Divisor=10 so close ? Why divisor=10 seems the best ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 13:56:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808561#M39790</guid>
      <dc:creator>slegleye</dc:creator>
      <dc:date>2022-04-19T13:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Choose divisor=  in linear trend tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808646#M39791</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have moved this post to 'Statistical Procedures' board.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 18:15:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808646#M39791</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-04-19T18:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Choose divisor=  in linear trend tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808648#M39792</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where did you get or have read that information?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To me,&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=" aa-term "&gt;DIVISOR=&lt;SPAN class=" aa-argument"&gt;value-list&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="xisDoc-paraSimpleFirst"&gt;&lt;SPAN&gt;just specifies a list of values by which to divide the coefficients so that&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;fractional coefficients can be entered as integer numerators.&lt;BR /&gt;&lt;BR /&gt;Nothing more, nothing less.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="xisDoc-paraSimpleFirst"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="xisDoc-paraSimpleFirst"&gt;&lt;SPAN&gt;Koen&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 18:17:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808648#M39792</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-04-19T18:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: Choose divisor=  in linear trend tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808649#M39793</link>
      <description>&lt;P&gt;Maybe you can find more info in below blogs :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The magical ESTIMATE (and CONTRAST) statements&lt;/P&gt;
&lt;P&gt;By Chris Daman on SAS Learning Post April 23, 2012&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sastraining/2012/04/23/the-magical-estimate-and-contrast-statements/" target="_blank"&gt;https://blogs.sas.com/content/sastraining/2012/04/23/the-magical-estimate-and-contrast-statements/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"Easy button" for ESTIMATE statements&lt;/P&gt;
&lt;P&gt;By Chris Daman on SAS Learning Post April 25, 2012&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sastraining/2012/04/25/easy-button-for-estimate-statements/" target="_blank"&gt;https://blogs.sas.com/content/sastraining/2012/04/25/easy-button-for-estimate-statements/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ESTIMATE Statements - the final installment&lt;/P&gt;
&lt;P&gt;By Chris Daman on SAS Learning Post May 2, 2012&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sastraining/2012/05/02/estimate-statements-the-final-installment/" target="_blank"&gt;https://blogs.sas.com/content/sastraining/2012/05/02/estimate-statements-the-final-installment/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to write CONTRAST and ESTIMATE statements in SAS regression procedures?&lt;/P&gt;
&lt;P&gt;By Rick Wicklin on The DO Loop June 6, 2016&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2016/06/06/write-contrast-estimate-statements-sas-regression-procedures.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2016/06/06/write-contrast-estimate-statements-sas-regression-procedures.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Usage Note 24447: Examples of writing CONTRAST and ESTIMATE statements&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/kb/24/447.html" target="_blank"&gt;https://support.sas.com/kb/24/447.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Usage Note 67024: Using the ESTIMATE or CONTRAST statement or Margins macro to assess continuous variable effects in interactions and splines&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/kb/67/024.html" target="_blank"&gt;67024 - Using the ESTIMATE or CONTRAST statement or Margins macro to assess continuous variable effects in interactions and splines (sas.com)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 18:19:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808649#M39793</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-04-19T18:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Choose divisor=  in linear trend tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808670#M39794</link>
      <description>&lt;P&gt;Dear all.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the info. However, it does not answer my question.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the exact SAS code and output. AGE and sex are binary (17 and 18 years old ; boy vs girl) .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc genmod data=mod ; where _imputation_=1 ;&lt;BR /&gt;ods output estimates=estimates ;&lt;BR /&gt;class id SES(ref='4') Sex age/param=ref ;&lt;BR /&gt;model binge3(ref='0')=sex age SES /dist=poisson link=log;&lt;BR /&gt;repeated subject=id/type=unstr ;&lt;BR /&gt;estimate '0 vs 4 direct' SES 1 0 0 0 -1 ;&lt;BR /&gt;estimate 'linear Div=10' SES 2 1 0 -1 -2 /divisor=10 e ;&lt;BR /&gt;estimate 'linear Div=1' SES 2 1 0 -1 -2 /divisor=1 e ;&lt;BR /&gt;run ;&lt;/P&gt;&lt;P&gt;The Contrast table is here :&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Label&lt;/TD&gt;&lt;TD&gt;RR=exp(L Beta&lt;/TD&gt;&lt;TD&gt;Lower CL&lt;/TD&gt;&lt;TD&gt;Upper CL&lt;/TD&gt;&lt;TD&gt;L Beta&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Lower CL&lt;/TD&gt;&lt;TD&gt;Upper CL&lt;/TD&gt;&lt;TD&gt;Pr&amp;nbsp;&amp;gt;&amp;nbsp;ChiSq&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0 vs 4 direct&lt;/TD&gt;&lt;TD&gt;0.682&lt;/TD&gt;&lt;TD&gt;0.5661&lt;/TD&gt;&lt;TD&gt;0.8216&lt;/TD&gt;&lt;TD&gt;-0.3827&lt;/TD&gt;&lt;TD&gt;-0.569&lt;/TD&gt;&lt;TD&gt;-0.1965&lt;/TD&gt;&lt;TD&gt;&amp;lt;.0001&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;linear Div=10&lt;/TD&gt;&lt;TD&gt;0.9176&lt;/TD&gt;&lt;TD&gt;0.8827&lt;/TD&gt;&lt;TD&gt;0.9539&lt;/TD&gt;&lt;TD&gt;-0.086&lt;/TD&gt;&lt;TD&gt;-0.1248&lt;/TD&gt;&lt;TD&gt;-0.0472&lt;/TD&gt;&lt;TD&gt;&amp;lt;.0001&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;linear Div=1&lt;/TD&gt;&lt;TD&gt;0.4231&lt;/TD&gt;&lt;TD&gt;0.2871&lt;/TD&gt;&lt;TD&gt;0.6236&lt;/TD&gt;&lt;TD&gt;-0.8602&lt;/TD&gt;&lt;TD&gt;-1.248&lt;/TD&gt;&lt;TD&gt;-0.4723&lt;/TD&gt;&lt;TD&gt;&amp;lt;.0001&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;Coefficients for Contrast linear Div=10 &lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Prm1&lt;/TD&gt;&lt;TD&gt;Prm2&lt;/TD&gt;&lt;TD&gt;Prm3&lt;/TD&gt;&lt;TD&gt;Prm4&lt;/TD&gt;&lt;TD&gt;Prm5&lt;/TD&gt;&lt;TD&gt;Prm6&lt;/TD&gt;&lt;TD&gt;Prm7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;0.2&lt;/TD&gt;&lt;TD&gt;0.1&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;-0.1&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;DIV align="center"&gt;Coefficients for Contrast linear Div=1 &lt;TABLE cellspacing="0" cellpadding="5"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Prm1&lt;/TD&gt;&lt;TD&gt;Prm2&lt;/TD&gt;&lt;TD&gt;Prm3&lt;/TD&gt;&lt;TD&gt;Prm4&lt;/TD&gt;&lt;TD&gt;Prm5&lt;/TD&gt;&lt;TD&gt;Prm6&lt;/TD&gt;&lt;TD&gt;Prm7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;-1&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;The result for Linear Div=1 offers me what I expect (approximately): according to the Contrast table results, the corresponding RR for being SES=0 vs SES=4 is exp(-0.086)^4=0.71. On the opposite the result for Linear Div=1 gives RR (SES=0 vs 4)= exp(-0.8602)^4=0.423, far from the "true" RR that is 0.682, based on the direct exponential of the beta coefficient exp(-0.3827). Why Div=10 gives a more accurate result ?&lt;/P&gt;&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;Best,&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 19 Apr 2022 19:48:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808670#M39794</guid>
      <dc:creator>slegleye</dc:creator>
      <dc:date>2022-04-19T19:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Choose divisor=  in linear trend tests</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808676#M39795</link>
      <description>&lt;P&gt;I am sorry.&lt;BR /&gt;I have no clue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This paper is partially devoted to usage of the DIVISOR= option after forward slash ( / ) on ESTIMATE statement.&lt;/P&gt;
&lt;P&gt;I have read it diagonally, but could not find the answer to your question.&lt;/P&gt;
&lt;P&gt;SAS Global Forum 2010&lt;BR /&gt;Paper 269-2010&lt;BR /&gt;Practicalities of Using ESTIMATE and CONTRAST Statements&lt;BR /&gt;David J. Pasta, ICON Clinical Research, San Francisco, CA&lt;BR /&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings10/269-2010.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings10/269-2010.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As I have moved your post to the most appropriate board for it&lt;/P&gt;
&lt;P&gt;, I am confident someone will come up with the right answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 20:13:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Choose-divisor-in-linear-trend-tests/m-p/808676#M39795</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-04-19T20:13:37Z</dc:date>
    </item>
  </channel>
</rss>

