<?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: Varying intercept and slope in regression analyses in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365508#M19174</link>
    <description>&lt;P&gt;2 - BY statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc logistic ...;&lt;/P&gt;
&lt;P&gt;by school hospital;&lt;/P&gt;
&lt;P&gt;model .....;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
    <pubDate>Thu, 08 Jun 2017 20:18:43 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-06-08T20:18:43Z</dc:date>
    <item>
      <title>Varying intercept and slope in regression analyses</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365507#M19173</link>
      <description>&lt;P&gt;Hello there,&lt;/P&gt;&lt;P&gt;I'm trying to understand how to create a regression analysis code depending on if the intercept and/or slope varies based on some group variables. Below is a hypothetical dataset with 15 students nested in 3 schools. Their passing an exam is correlated with their family income and the school they attend to which is the nesting variable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Student_ID&lt;/TD&gt;&lt;TD&gt;PASS&lt;/TD&gt;&lt;TD&gt;FAMILY_INCOME&lt;/TD&gt;&lt;TD&gt;SCHOOL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;120000&lt;/TD&gt;&lt;TD&gt;sch1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;170000&lt;/TD&gt;&lt;TD&gt;sch1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;90000&lt;/TD&gt;&lt;TD&gt;sch1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;91500&lt;/TD&gt;&lt;TD&gt;sch1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;93000&lt;/TD&gt;&lt;TD&gt;sch1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;180000&lt;/TD&gt;&lt;TD&gt;sch1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;225000&lt;/TD&gt;&lt;TD&gt;sch1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;150000&lt;/TD&gt;&lt;TD&gt;sch1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;90000&lt;/TD&gt;&lt;TD&gt;sch2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;92000&lt;/TD&gt;&lt;TD&gt;sch2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;94000&lt;/TD&gt;&lt;TD&gt;sch2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;78000&lt;/TD&gt;&lt;TD&gt;sch2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;110000&lt;/TD&gt;&lt;TD&gt;sch3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;50000&lt;/TD&gt;&lt;TD&gt;sch3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;140000&lt;/TD&gt;&lt;TD&gt;sch3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I want to write a regression analysis with c&lt;U&gt;onstant intercept and slope for each school:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9274i300F3701EE3CCB77/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="1.png" title="1.png" /&gt;&amp;nbsp;I would:&lt;/P&gt;&lt;P&gt;PROC LOGISTIC DATA = TEST;&lt;/P&gt;&lt;P&gt;MODEL PASS = FAMILY_INCOME;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I want to write a regression analysis with &lt;U&gt;varying intercept&lt;/U&gt;&lt;/SPAN&gt;&lt;U&gt;&amp;nbsp;but constant slope for each school:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9275i3F0C9BBDBC5574B8/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="2.png" title="2.png" /&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;where&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9276iCD30570A8F0E38F4/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="3.png" title="3.png" /&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;I would:&lt;/P&gt;&lt;P&gt;PROC LOGISTIC DATA = TEST;&lt;/P&gt;&lt;P&gt;CLASS SCHOOL (ref="sch1");&lt;/P&gt;&lt;P&gt;MODEL PASS = FAMILY_INCOME SCHOOL;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I want to write a regression analysis with &lt;U&gt;varying intercept and slope for each school&lt;/U&gt;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9277iB99CE52EE1C1EA04/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="4.png" title="4.png" /&gt;&lt;/P&gt;&lt;P&gt;where&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9278iE56C5AAD3A72B81A/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="5.png" title="5.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9279i95A9CB647D1A1AF4/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="6.png" title="6.png" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, my questions are:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Did I get the varying intercept constant slope model in PROC LOGISTIC right?&lt;/P&gt;&lt;P&gt;2. How would I write the PROC LOGISTIC to accommodate varying intercept and slope for each hospital?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Recep&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13920i0A83C3605FA5AB5F/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="5.png" title="5.png" /&gt;</description>
      <pubDate>Thu, 08 Jun 2017 20:16:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365507#M19173</guid>
      <dc:creator>Recep</dc:creator>
      <dc:date>2017-06-08T20:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: Varying intercept and slope in regression analyses</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365508#M19174</link>
      <description>&lt;P&gt;2 - BY statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc logistic ...;&lt;/P&gt;
&lt;P&gt;by school hospital;&lt;/P&gt;
&lt;P&gt;model .....;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2017 20:18:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365508#M19174</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-08T20:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Varying intercept and slope in regression analyses</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365509#M19175</link>
      <description>&lt;OL&gt;
&lt;LI&gt;yes&lt;/LI&gt;
&lt;LI&gt;MODEL PASS = FAMILY_INCOME|SCHOOL; (the vertical bar creates main effects and interactions, which can also be written as MODEL PASS=FAMILY SCHOOL FAMILY*INCOME;&amp;nbsp;&amp;nbsp; )&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Thu, 08 Jun 2017 20:25:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365509#M19175</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-06-08T20:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Varying intercept and slope in regression analyses</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365510#M19176</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;2 - BY statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc logistic ...;&lt;/P&gt;
&lt;P&gt;by school hospital;&lt;/P&gt;
&lt;P&gt;model .....;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;No, you wouldn't do this unless you had a very good reason. You want all terms in one model, which gives you better estimate of the overall variability than you get if you do it with a BY statement.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2017 20:21:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365510#M19176</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-06-08T20:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Varying intercept and slope in regression analyses</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365553#M19178</link>
      <description>&lt;P&gt;I think I may have misunderstood the question, I would definitely trust&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;solution over mine!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2017 22:39:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365553#M19178</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-08T22:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Varying intercept and slope in regression analyses</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365671#M19182</link>
      <description>&lt;P&gt;that wil lead you to Generalize Mixed Model. Try GLIMMIX.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC GLIMMIX DATA = TEST;&lt;/P&gt;
&lt;P&gt;class school;&lt;/P&gt;
&lt;P&gt;MODEL PASS = FAMILY_INCOME/dist=binomial;&lt;/P&gt;
&lt;P&gt;random intercept &lt;SPAN&gt;FAMILY_INCOME&amp;nbsp;&lt;/SPAN&gt;/subject=school;&lt;/P&gt;
&lt;P&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2017 03:30:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365671#M19182</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-06-10T03:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Varying intercept and slope in regression analyses</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365829#M19191</link>
      <description>&lt;P&gt;Thanks a lot for your response Paige!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you mean:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MODEL PASS = FAMILY_INCOME SCHOOL FAMILY_INCOME*SCHOOL;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Recep&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 20:49:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/365829#M19191</guid>
      <dc:creator>Recep</dc:creator>
      <dc:date>2017-06-09T20:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: Varying intercept and slope in regression analyses</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/367060#M19255</link>
      <description>&lt;P&gt;Yes, that's what I meant&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 17:11:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/367060#M19255</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-06-14T17:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: Varying intercept and slope in regression analyses</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/367062#M19256</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;that wil lead you to Generalize Mixed Model. Try GLIMMIX.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC GLIMMIX DATA = TEST;&lt;/P&gt;
&lt;P&gt;class school;&lt;/P&gt;
&lt;P&gt;MODEL PASS = FAMILY_INCOME/dist=binomial;&lt;/P&gt;
&lt;P&gt;random intercept &lt;SPAN&gt;FAMILY_INCOME&amp;nbsp;&lt;/SPAN&gt;/subject=school;&lt;/P&gt;
&lt;P&gt;RUN;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't see this as answering the original question. My interpretation is that the original question was not asking for RANDOM effects to be included&amp;nbsp;in the model. If you make something a RANDOM effect, then you won't get an estimate of&amp;nbsp;the slopes, and you won't get estimates of the intercepts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would not have a problem with this as a solution to the problem:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc glimmix data=test;
    class school;
    model pass=family_income|school/dist=binomial;
run;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Jun 2017 17:15:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/367062#M19256</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-06-14T17:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Varying intercept and slope in regression analyses</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/367098#M19259</link>
      <description>&lt;P&gt;This discussion points to the root of my original problem: I think I'm having a bit of a hard time to understand the difference between having a "varying slope" vs. "random effects" for a particular variable (the school in my example). So, Paige, would you say the LOGISTIC regression you proposed would still be a fixed effects for "SCHOOL"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;, thanks for your response as well! Even though the code you provided did not work for my data (it may be just because my made up data was not big/versitile enough for the GLIMMIX) how would you differentiate a "varying slope" vs "random effects"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot in advance to both of you...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Recep&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 18:47:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/367098#M19259</guid>
      <dc:creator>Recep</dc:creator>
      <dc:date>2017-06-14T18:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: Varying intercept and slope in regression analyses</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/367116#M19262</link>
      <description>&lt;P&gt;In statistical terminology&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are only interested in these specific schools, and you&amp;nbsp;want to estimate a different slope and estimate a different intercept for each school, these are FIXED effects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are interested in the entire population of schools and you have randomly selected these schools and you want to know the variability of the intercept across schools, or the variability of slopes across schools (in other words, a standard deviation of the intercepts or a standard deviation of the slopes), then you have a RANDOM effect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The SAS procedure GLIMMIX will not estimate the slopes for you if you put SCHOOL in a RANDOM statement, it will give you a variance of the slopes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As I understand your original question, and the models which you carefully wrote out, it seems to me the slopes and intercepts&amp;nbsp;are FIXED effects, and thus a RANDOM statement is not needed here (in fact, in my opinion, a RANDOM statement incorrect in this situation).&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 19:25:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Varying-intercept-and-slope-in-regression-analyses/m-p/367116#M19262</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-06-14T19:25:06Z</dc:date>
    </item>
  </channel>
</rss>

