<?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: Proc IML: estimate covariance matrix using simulated maximum likelihood in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-IML-estimate-covariance-matrix-using-simulated-maximum/m-p/525577#M4501</link>
    <description>&lt;P&gt;You originally posted this in the "New SAS User" Community, so welcome to SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your&amp;nbsp;message, you say you have a mixed logistic model, but the formula you post looks closer to a linear mixed model. &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetVersion=14.3&amp;amp;docsetTarget=statug_mixed_details01.htm&amp;amp;locale=en" target="_self"&gt;The general formulation of a mixed model is&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Y = X*beta + Z*gamma + eps&lt;/P&gt;
&lt;P&gt;where gamma ~ MVN(0, G) and eps ~ MVN(0, R).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the goal of your program? If your goal is to&amp;nbsp;fit the&amp;nbsp;fixed and random effects, you can use PROC MIXED for linear models or PROC GLMMIX for a logit mixed model. If your goal is to fit some more exotic mixed model, you can use PROC NLMIXED to define your own model.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are writing the program for&amp;nbsp;educational purposes (eg, school project), then please post your IML code. Regarding your questions about the Cholesky factor, my comments are:&lt;/P&gt;
&lt;P&gt;1. The parameter estimates for a mixed model are typically done on the variance-covariance matrix, not the Cholesky factor. You can constrain the optimization to find the positive diagonal&amp;nbsp;elements&amp;nbsp;(variances).&lt;/P&gt;
&lt;P&gt;2. By&amp;nbsp;definition, the Cholesky factor of a positive semidefinite matrix is the (unique!) matrix with positive elements on the diagonal for which L*L` = Sigma. In your scheme (solving for t, r, m), if you obtain negative values for&amp;nbsp;t or m, then I think you can just change&amp;nbsp;a few signs to get the usual Cholesky factor. For example,&amp;nbsp;if t &amp;lt; 0 then the Cholesky factor is {-t 0, -r m}.&amp;nbsp; If m &amp;lt; 0 then the factor is {t 0, r -m};&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, unless you have a compelling reason to want to program the estimation in SAS/IML, I would recommend&amp;nbsp;using one of the specialized SAS procedure for mixed models.&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jan 2019 20:57:23 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2019-01-08T20:57:23Z</dc:date>
    <item>
      <title>Proc IML: estimate covariance matrix using simulated maximum likelihood</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-IML-estimate-covariance-matrix-using-simulated-maximum/m-p/525548#M4500</link>
      <description>&lt;P&gt;Hello SAS community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I asked this question a few weeks ago on a different community in SAS and could&amp;nbsp;not get any help. I'll try to be more specific and hope someone can help me out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I set up a&amp;nbsp;mix-logit model with random coefficients in PROC IML. I try to&amp;nbsp;simplify the model here:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;Y=b1X1 + b2X2 + eps&lt;/EM&gt;&amp;nbsp;where &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;b1=cZ1 + E1&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;b2=dZ2 + E2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Y is latent, E1 and E2 are errors coming from a bivariate normal distribution with zero mean and a covariance matrix. I used Cholesky decomposition such&amp;nbsp;that:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;E1=t.e1&lt;/EM&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;E2=r.e1 + m.e2&lt;/EM&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;where &lt;EM&gt;e1&lt;/EM&gt; and &lt;EM&gt;e2&lt;/EM&gt; each&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;are coming from a standard normal distribution that I generate outside the optimization procedure. I then, use simulated maximum likelihood (simulated over R draws of &lt;EM&gt;e1,e2&lt;/EM&gt;) to estimate these parameters:&amp;nbsp;&lt;EM&gt;c, d, t, r, m&lt;/EM&gt;. At the end, using the parameters from the lower triangular matrix (i.e.&amp;nbsp;&lt;EM&gt;t, r, m&lt;/EM&gt;), I can get the covariance matrix of the bivariate normal distribution of &lt;EM&gt;E1&lt;/EM&gt; and &lt;EM&gt;E2&lt;/EM&gt;. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However, there are&amp;nbsp;issues with Cholesky&amp;nbsp;factorization.&amp;nbsp;1. The parameters are not identified as&amp;nbsp;&lt;EM&gt;t, r,&lt;/EM&gt; and m could be either positive or negative and still give the same covariance matrix. and in fact &amp;nbsp;2. I get a negative estimate for &lt;EM&gt;t &lt;/EM&gt;(and sometimes for &lt;EM&gt;m&lt;/EM&gt; or &lt;EM&gt;r&lt;/EM&gt;)&amp;nbsp;where &lt;EM&gt;t&lt;/EM&gt; is technically a standard error and&amp;nbsp;statistically should&amp;nbsp;be positive (so I'm not sure if this result is acceptable?).&amp;nbsp;I tried to add a constraint (i.e. t&amp;gt;0 and m&amp;gt;0). However, for negative parameters, it does not work and the result&amp;nbsp;is bounded&amp;nbsp;and equal to zero. I can also add arbitrary constraints such as &lt;EM&gt;t=1&lt;/EM&gt; and &lt;EM&gt;m=1&lt;/EM&gt; but I would like to try&amp;nbsp;other ways as well, before having to add more restrictions to the model.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Therefore, I would like to know if there is a different way to estimate &lt;EM&gt;c&lt;/EM&gt;, &lt;EM&gt;d&lt;/EM&gt; and the covariance matrix parameters (variance and correlation&amp;nbsp;coefficient of &lt;EM&gt;E1&lt;/EM&gt; and &lt;EM&gt;E2&lt;/EM&gt;). For example, and m&lt;/SPAN&gt;&lt;SPAN&gt;ore specifically, is it possible&amp;nbsp;to generate bivariate normal errors (E1 and E2 with R draws) &lt;U&gt;&lt;EM&gt;within&lt;/EM&gt;&lt;/U&gt; the&amp;nbsp;optimization procedure&amp;nbsp;such that at every step&amp;nbsp;of the&amp;nbsp;optimization, the program&amp;nbsp;generates a new set of bivariate normal errors (&lt;EM&gt;E1&lt;/EM&gt; and &lt;EM&gt;E2&lt;/EM&gt;) with the new/improved parameters of the covariance matrix.&amp;nbsp;Also, I appreciate any comments and&amp;nbsp;suggestions about the issues in Cholesky&amp;nbsp;factorization.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 19:40:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-IML-estimate-covariance-matrix-using-simulated-maximum/m-p/525548#M4500</guid>
      <dc:creator>ZMX</dc:creator>
      <dc:date>2019-01-08T19:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Proc IML: estimate covariance matrix using simulated maximum likelihood</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-IML-estimate-covariance-matrix-using-simulated-maximum/m-p/525577#M4501</link>
      <description>&lt;P&gt;You originally posted this in the "New SAS User" Community, so welcome to SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your&amp;nbsp;message, you say you have a mixed logistic model, but the formula you post looks closer to a linear mixed model. &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetVersion=14.3&amp;amp;docsetTarget=statug_mixed_details01.htm&amp;amp;locale=en" target="_self"&gt;The general formulation of a mixed model is&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Y = X*beta + Z*gamma + eps&lt;/P&gt;
&lt;P&gt;where gamma ~ MVN(0, G) and eps ~ MVN(0, R).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the goal of your program? If your goal is to&amp;nbsp;fit the&amp;nbsp;fixed and random effects, you can use PROC MIXED for linear models or PROC GLMMIX for a logit mixed model. If your goal is to fit some more exotic mixed model, you can use PROC NLMIXED to define your own model.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are writing the program for&amp;nbsp;educational purposes (eg, school project), then please post your IML code. Regarding your questions about the Cholesky factor, my comments are:&lt;/P&gt;
&lt;P&gt;1. The parameter estimates for a mixed model are typically done on the variance-covariance matrix, not the Cholesky factor. You can constrain the optimization to find the positive diagonal&amp;nbsp;elements&amp;nbsp;(variances).&lt;/P&gt;
&lt;P&gt;2. By&amp;nbsp;definition, the Cholesky factor of a positive semidefinite matrix is the (unique!) matrix with positive elements on the diagonal for which L*L` = Sigma. In your scheme (solving for t, r, m), if you obtain negative values for&amp;nbsp;t or m, then I think you can just change&amp;nbsp;a few signs to get the usual Cholesky factor. For example,&amp;nbsp;if t &amp;lt; 0 then the Cholesky factor is {-t 0, -r m}.&amp;nbsp; If m &amp;lt; 0 then the factor is {t 0, r -m};&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, unless you have a compelling reason to want to program the estimation in SAS/IML, I would recommend&amp;nbsp;using one of the specialized SAS procedure for mixed models.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 20:57:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-IML-estimate-covariance-matrix-using-simulated-maximum/m-p/525577#M4501</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-01-08T20:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Proc IML: estimate covariance matrix using simulated maximum likelihood</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-IML-estimate-covariance-matrix-using-simulated-maximum/m-p/525825#M4504</link>
      <description>&lt;P&gt;Thanks Rick for the quick reply. I’m unfamiliar with Proc nlmixed. I used IML for a similar model (without the simulation part) because allows me to create my model in matrix language with all the details that I needed to include in the model. It might not be the only way to do it though. I put&amp;nbsp;the main parts of the program here, without certain details, to briefly show what I’m trying to do. I hope it is clear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a multinomial logistic structural model. I estimate the model parameters and then use these parameters for predictions. In this model, each individual faces certain choices (say 10 choices). Data is cross sectional.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* Program within Proc IML, to set up the likelihood ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;start DM(b) global ( X1, X2, e1, e2, e3, D, … );&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;* rows are number of individuals;&lt;/P&gt;&lt;P&gt;* D is the number of draws for the random component;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;do d=1 to D;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;* Using Cholesky decomposition;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;E1[,d]=t#e1[,d]&lt;/EM&gt;&amp;nbsp;;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;E2[,d]=r#e1[,d]&amp;nbsp;+ m#e2[,d];&lt;/EM&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;* e1 and e2 are standard normal;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* Random coefficients are;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;b1[,1]=Z1*c +&amp;nbsp;E1[,d]&amp;nbsp;;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;b2[,1]=Z2*d +&amp;nbsp;E2[,d];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* where E1 and E2~MVN(0,G) and are the random component;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* The main model is:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Yk&amp;nbsp;[,1]= b1#log(X1k) + b2#log(X2k) + b3log(X1k)^2 +…+&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;I&gt;epsk&lt;/I&gt;;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;/* k=1,…,10, one equation per choice */&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;*epsk~type I extreme value therefore&lt;SPAN&gt;&amp;nbsp;changes in&amp;nbsp;&lt;/SPAN&gt;eps across choices ~ logistic;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* The logistic probability for each individual and each choice is ;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;prob(choice 1)=exp(Y1) / sum[exp(Yk)];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;prob(choice 10)=exp(Y7) / sum[exp(Yk)];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* then the likelihood for each individual in the matrix is,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;L[,1] = s # prob(choice k) ;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* s is the observed choice for each individual;&lt;/P&gt;&lt;P&gt;&amp;nbsp;* L is conditional on a given random draw;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* L from each round (total of D rounds) are all added together (sum_L) to eventually get the approximate integral love the random component (SL) ; */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sum_L [ ,1]=sum_L [ , 1]+ L [ ,1];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* end the D loop;&lt;/P&gt;&lt;P&gt;end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SL=sum_L / D;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* The log-simulated likelihood is;&lt;/P&gt;&lt;P&gt;SLL=sum(log(SL));&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;return (SLL);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;finish DM;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Parameters to estimate are &lt;EM&gt;c, d, b3, t, r, m (G)&lt;/EM&gt;. I used nlpnrr for optimisation. As I mentioned earlier instead of using Cholesky, I would like to use a different method that directly estimates the covariance matrix for E1 and E2 along with the other parameters. Is there a way to do this within this program (IML) or it should be transferred to Proc nlmixed?&lt;/P&gt;&lt;P&gt;About your second comment on the Cholesky estimates: as you mentioned the resulting covariance matrix by definition is positive semidefinite, regardless of the signs of t,r,m. But what I don't quit understand is how I should justify changing the signs of the estimates.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 19:51:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-IML-estimate-covariance-matrix-using-simulated-maximum/m-p/525825#M4504</guid>
      <dc:creator>ZMX</dc:creator>
      <dc:date>2019-01-09T19:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Proc IML: estimate covariance matrix using simulated maximum likelihood</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-IML-estimate-covariance-matrix-using-simulated-maximum/m-p/525827#M4505</link>
      <description>Oh, I think I see your point about changing the signs of the Cholesky factor.</description>
      <pubDate>Wed, 09 Jan 2019 19:25:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-IML-estimate-covariance-matrix-using-simulated-maximum/m-p/525827#M4505</guid>
      <dc:creator>ZMX</dc:creator>
      <dc:date>2019-01-09T19:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proc IML: estimate covariance matrix using simulated maximum likelihood</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-IML-estimate-covariance-matrix-using-simulated-maximum/m-p/526038#M4506</link>
      <description>&lt;P&gt;If I understand what you are doing, you are using simulation from MVN to generate D instances of the random effects. Then you are using NLPNRR to fit a MLE&amp;nbsp;model for each instance and are averaging the result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's not how mixed models are fit. As far as I know, your attempt to evaluate the "log-simulated likelihood" is not a valid estimation method. (And if you are re-generating the random effects between consecutive fits, this process probably won't converge.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To answer your programming question, you can use the BLC option in the NLPNRR function to set the Boundary and Linear&amp;nbsp;Constraints (BLC) for the parameters. In particular, you can&amp;nbsp;specify that certain parameters must be positive.&amp;nbsp; For an example of using BLC, see "Step 2: Set up constraints" in the article &lt;A href="https://blogs.sas.com/content/iml/2011/10/12/maximum-likelihood-estimation-in-sasiml.html" target="_self"&gt;"Maximum likelihood estimation in SAS/IML."&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For an example&amp;nbsp;that compares the PROC IML approach to MLE with the PROC NLMIXED approach, see &lt;A href="https://blogs.sas.com/content/iml/2017/06/14/maximum-likelihood-estimates-in-sas.html" target="_self"&gt;"Two ways to compute maximum likelihood estimates in SAS."&lt;/A&gt;&amp;nbsp; I believe you can actually use PROC GLIMMIX for this problem, but I am not an expert on GLIMMIX and I&amp;nbsp;am not 100% clear about&amp;nbsp;&lt;SPAN&gt;what model you are trying to fit,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest you read about&lt;A href="http://support.sas.com/kb/22/871.html" target="_self"&gt; "Types of logistic (or logit) models that can be fit using SAS"&lt;/A&gt;&amp;nbsp;and focus on the models that include random effects. You might also want to browse the excellent papers by Robin High, in case they are relevant for you:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings13/445-2013.pdf" target="_self"&gt;"Models for Ordinal Response Data"&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://support.sas.com/resources/papers/proceedings17/0902-2017.pdf" target="_self"&gt;"Fitting Statistical Models with PROCs NLMIXED and MCMC"&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Thu, 10 Jan 2019 13:38:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-IML-estimate-covariance-matrix-using-simulated-maximum/m-p/526038#M4506</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-01-10T13:38:45Z</dc:date>
    </item>
  </channel>
</rss>

