<?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: odd instances pulled from random effects distribution in proc nlmixed? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/267046#M14059</link>
    <description>&lt;P&gt;I don't think any&amp;nbsp;forcing is done. &amp;nbsp;I think those values serve as initial estimates. &amp;nbsp;To fix the values, you would have to use the BOUNDS statement appropriately. &amp;nbsp;You can get a start by looking at Example 82.6 Simulated Nested Linear Random-Effects Model (SAS/STAT14.1 documentation), where variance components are bounded to be nonnegative. &amp;nbsp;If you want fixed values, you would have to bound each parameter above and below. &amp;nbsp;(NOTE: I may be completely out of it here, as the documentation for the distribution options, at least for the MODEL statement sure look like what you are expecting).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I get some time next week, I will explore this further, using the example datasets and programs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
    <pubDate>Thu, 28 Apr 2016 17:16:13 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2016-04-28T17:16:13Z</dc:date>
    <item>
      <title>odd instances pulled from random effects distribution in proc nlmixed?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/266187#M14023</link>
      <description>&lt;P&gt;I am trying to run a proc nlmixed program, to fit a sigmoidal type curve (abscissa = time, ordinate = concentration) to&lt;/P&gt;&lt;P&gt;data for many patients (subjects). &amp;nbsp;I am initially applying the program to simulated data. &amp;nbsp; The data at t=0 has a magnitude&lt;/P&gt;&lt;P&gt;of 0 (minconc below), and rises to a magnitude of 100 (maxconc), with the midpt at t=18 data (but has noise added to it).It looks like (it is sorted by&amp;nbsp;simnum and then by patient):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;simnum patient time igfbp ir ifgbp_shift ir_shift&lt;/P&gt;&lt;P&gt;1 1 0.000000 3.157332 4.392493 0.000000 2.000000&lt;BR /&gt;1 1 1.000000 3.323757 -10.545450 0.000000 2.000000&lt;BR /&gt;1 1 2.000000 -2.368074 -1.448547 0.000000 2.000000&lt;BR /&gt;1 1 3.000000 3.133494 -3.696192 0.000000 2.000000&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The program (attached and below) is essentially fitting a simoid over time to the igfbp value for each patient:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc nlmixed data=simsig cov corr ecov ecorr method=firo tech=congra maxit=1000;
parms midpt = 18;
random maxconc minconc steep tshift ~ normal([100,0,6,2],[25,0,25,0,0,1,0,0,0,2]) subject=patient out=igfbp_random_effects;

if (time-tshift) &amp;lt;= 0 then do;
predconc = minconc;
end;
else do;
predconc = minconc + (maxconc-minconc)*((time-tshift)**steep)/((time-tshift)**steep + midpt**steep);
end;

model igfbp ~ normal(predconc,100);
by simnum;
predict predconc out=predicted_igfbp_concs;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The program seems to run. &amp;nbsp;Then,&lt;/P&gt;&lt;P&gt;for each patient I get out the instances&amp;nbsp;of the random variables (ie, maxconc, minconc, steep, and tshift).&amp;nbsp;&lt;/P&gt;&lt;P&gt;So for the first patient (and first simulation) and random variables maxconc, minconc, steep, and tshift I get:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"simnum" "patient" "Random Effect" "Empirical Bayes Estimate" "Standard Error of Prediction" "Degrees of Freedom" "t Value" "Pr &amp;gt; |t|" "Alpha" "Lower Confidence Limit" "Upper Confidence Limit"&lt;BR /&gt;1 1 maxconc 0.2452964704 2.0463602486 26 0.119869642 0.9055078792 0.05 -3.961057263 4.4516502035&lt;/P&gt;&lt;P&gt;1 1 minconc -0.049219837 2.4988920525 26 -0.019696664 0.9844357323 0.05 -5.185766015 5.0873263414&lt;BR /&gt;1 1 steep 0.6631004289 0.6859789874 26 0.9666483101 0.3426260427 0.05 -0.746949574 2.0731504317&lt;BR /&gt;1 1 tshift 0.0960816859 0.4931441808 26 0.1948348772 0.8470366982 0.05 -0.917590695 1.1097540671&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It also estimates a fixed effect "midpt" of ~15, which is in the ball park of what I used in my simulation (18).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What bothers me the most are the values it is picking for the random effects (&lt;/STRONG&gt;and the poor fit&lt;STRONG&gt;)&lt;/STRONG&gt;. Assuming I am interpreting the output correctly, the proc is&amp;nbsp;1. producing "fits" for each patient which are really terrible 2. don't seem like they are really coming from the distribution I think I am specifying. for example: it seems to be saying that maxconc was 0.24 for patient 1 in simnum 1. and that this value was&lt;STRONG&gt; fairly likely&lt;/STRONG&gt; to be pulled from its normal distribution (t value = 0.11, Pr &amp;gt; |t| = .9). But I THINK that I am specifying in the sas program that it should be pulled from a normal distribution with mean 100 and variance 25.&lt;STRONG&gt; So I must not really be specifying what I think I am specifying?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not as troubled by the bad fit to the data per se. &amp;nbsp;Since bad fits can happen for various reasons. &amp;nbsp;But the fact that&lt;/P&gt;&lt;P&gt;it seems to be "happy" generating&amp;nbsp;random instances which I think don't make sense points to a bigger problem with my understanding&amp;nbsp;of what is going on.&lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://communities.sas.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for any enlightenment which anyone can provide ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2016 20:08:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/266187#M14023</guid>
      <dc:creator>LarryL</dc:creator>
      <dc:date>2016-04-25T20:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: odd instances pulled from random effects distribution in proc nlmixed?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/266367#M14026</link>
      <description>&lt;P&gt;Rather than considering the parameters of the sigmoid to be random factors, can you consider them to be fixed, with random errors? &amp;nbsp;See for example, Example 82.1 One-Compartment Model with Pharmacokinetic Data (SAS/STAT 14.1 documentation), where b1 and b2 are random effects added on to the fixed betas. &amp;nbsp;I think this will help you avoid much of the problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The other thing to check is that it looks like your simulated data may have pathological values. &amp;nbsp;If the minimum is 0, it strikes me as odd to see values less than zero as a response for igfbp. &amp;nbsp;Also, watch out for scaling problems over time. &amp;nbsp;if the midpt is at 18, then the last value is likely 36, so that (time-tshift)**steep is 34**6 =&amp;nbsp;1544804416 , such that you may run into fit problems.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2016 13:45:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/266367#M14026</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2016-04-26T13:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: odd instances pulled from random effects distribution in proc nlmixed?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/266420#M14031</link>
      <description>&lt;P&gt;thanks for the quick response and info Steve.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will take a look at that model, but I am thinking that each subject has different kinetics so I thought my model&lt;/P&gt;&lt;P&gt;made sanse.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As to the negative values, that is because of noise.&amp;nbsp; I think I am specifying&amp;nbsp; a model that has&lt;/P&gt;&lt;P&gt;Gaussian noise&amp;nbsp; (model igfbp = normal(predconc,100))&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;. So even though minconc = 0 (and hence predconc is&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;also ~0 for small time), noise with a sd of 10&lt;BR /&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;is added to that, hence the possiblity of negative values. &lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;As to your midpt concern - I am not sure&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;I understand what you are getting at.&amp;nbsp; yes, that value (34**6) can be very large, but I have that&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;same number in the numerator and denominator, so as time gets larger the ratio should go to 1 and the&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;entire formula thus approaches maxconc.&amp;nbsp; Are you thinking there might be numerical issues within&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;SAS, given how it might do the fit, dividing one large number by the other?&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;do you have any thoughts on my biggest concern - ie, why does SAS seem to be pulling my random &lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;variables (e, maxconc) from a Gaussian with mean zero and variance 1 (?) when &lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;I think I am specifying they&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token punctuation"&gt;(ie, maxconc) should come from a Gaussian with mean 100 and variance 25?&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2016 15:31:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/266420#M14031</guid>
      <dc:creator>LarryL</dc:creator>
      <dc:date>2016-04-26T15:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: odd instances pulled from random effects distribution in proc nlmixed?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/266469#M14032</link>
      <description>&lt;P&gt;Gonna jump around some. &amp;nbsp;I realize that you have the large exponent in both the numerator and denominator, so things should work out, but save yourself some grief and only calculate it once, and then pass that to both the numerator and denominator.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;factor=(time - tshift)**steep;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;predconc = minconc + (maxconc - minconc)*(factor / (factor + midpt**steep));&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I still think you should parameterize each of these as fixed effects with a random error (normal with mean=0, and variance=what you have now).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as why it seems to be drawing from a N(0,1), I would guess that the solution after optimization is somewhere near that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2016 17:45:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/266469#M14032</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2016-04-26T17:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: odd instances pulled from random effects distribution in proc nlmixed?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/266712#M14045</link>
      <description>&lt;P&gt;you say: "As far as why it seems to be drawing from a N(0,1), I would guess that the solution after optimization is somewhere near that".&amp;nbsp;&amp;nbsp; I thought that it should NOT be allowed to find the "best" Normal distribution for my random variables.&amp;nbsp; I THOUGHT that I was specifying the exact distributions it must use when I say:&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;random maxconc minconc steep tshift &lt;SPAN class="token operator"&gt;~&lt;/SPAN&gt; normal&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;[&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;100&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;6&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;2&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;]&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;[&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;25&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;25&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;2&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;]&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; subject&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;patient&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Doesn't that FORCE it to use a N(mean=100, var=25) for maxconc?&amp;nbsp; And that all it does, for these four random variables, is decide the most likely instances of those variables for each subject?&amp;nbsp; (it IS finding the best value for "midpt").&lt;/P&gt;&lt;P&gt;And it COULD pick a maxconc ~0,&amp;nbsp; but it should then&lt;/P&gt;&lt;P&gt;at least report that the chosen value is very improbable (ie, the t value and prob reported should reflect that).&amp;nbsp; THAT is what&lt;/P&gt;&lt;P&gt;is confusing me the most - it seems like it does not think it is pulling maxconc from a N(100,25) distribution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It reports for maxconc for patient 1:&lt;/P&gt;&lt;P&gt;simnum" "patient" "Random Effect" "Empirical Bayes Estimate" "Standard Error of Prediction" "Degrees of Freedom" "t Value" "Pr &amp;gt; |t|" "Alpha" "Lower Confidence Limit" "Upper Confidence Limit"&lt;BR /&gt;1 1 maxconc 0.2452964704 2.0463602486 26 0.119869642 0.9055078792 0.05 -3.961057263 4.4516502035&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so it is saying the instance of maxconc has a value of .24,&amp;nbsp; and this has a t value of 2.04 of being pulled from its&lt;/P&gt;&lt;P&gt;distribution,&amp;nbsp; and a value this size (or larger)&amp;nbsp; would happen&amp;nbsp; 11.9% of the time - ie, is fairly likely.&amp;nbsp; At least that is the&lt;/P&gt;&lt;P&gt;way I am interpreting the output.&amp;nbsp; What am I missing or wrong about?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2016 14:10:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/266712#M14045</guid>
      <dc:creator>LarryL</dc:creator>
      <dc:date>2016-04-27T14:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: odd instances pulled from random effects distribution in proc nlmixed?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/267046#M14059</link>
      <description>&lt;P&gt;I don't think any&amp;nbsp;forcing is done. &amp;nbsp;I think those values serve as initial estimates. &amp;nbsp;To fix the values, you would have to use the BOUNDS statement appropriately. &amp;nbsp;You can get a start by looking at Example 82.6 Simulated Nested Linear Random-Effects Model (SAS/STAT14.1 documentation), where variance components are bounded to be nonnegative. &amp;nbsp;If you want fixed values, you would have to bound each parameter above and below. &amp;nbsp;(NOTE: I may be completely out of it here, as the documentation for the distribution options, at least for the MODEL statement sure look like what you are expecting).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I get some time next week, I will explore this further, using the example datasets and programs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2016 17:16:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/267046#M14059</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2016-04-28T17:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: odd instances pulled from random effects distribution in proc nlmixed?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/267128#M14070</link>
      <description>&lt;P&gt;It really does not make sense to treat the parameters as random effects. You will get extreme shrinkage to the mean, with little relationship with the predictor variable. You can have random variation around the fixed-effect parameters. This is called a random-coefficient model. See the Getting Started example in the User's Guide for a simple case of this where the asymptote has an additional random effect. This approach will be much more productive.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2016 22:18:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/odd-instances-pulled-from-random-effects-distribution-in-proc/m-p/267128#M14070</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2016-04-28T22:18:35Z</dc:date>
    </item>
  </channel>
</rss>

