<?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: Understand the Calculation of Parameter Estimates in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238654#M12645</link>
    <description>&lt;P&gt;The MLE estimates are obtained by nonlinear optimization of a likelihood or log-likelihood function. For an example, with step-by-step details, see the article&amp;nbsp;&lt;A href="http://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;</description>
    <pubDate>Thu, 10 Dec 2015 10:18:59 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2015-12-10T10:18:59Z</dc:date>
    <item>
      <title>Understand the Calculation of Parameter Estimates</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238456#M12631</link>
      <description>&lt;P&gt;I wanted to understand the math behind the caluclation of Parameter Estimates in the following code. I wnat ot undertsand how the values of theta, scale and shape are computed in SAS, when we equate them to "est". It would be great if anyone could help me understand this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data Plates;&lt;BR /&gt;label Gap = 'Plate Gap in cm';&lt;BR /&gt;input Gap @@;&lt;BR /&gt;datalines;&lt;BR /&gt;-0.746 0.357 0.376 0.327 0.485 1.741 0.241 0.777 0.768 0.409&lt;BR /&gt;0.252 0.512 0.534 1.656 0.742 0.378 0.714 1.121 0.597 0.231&lt;BR /&gt;0.541 0.805 0.682 0.418 0.506 0.501 0.247 0.922 0.880 0.344&lt;BR /&gt;0.519 1.302 0.275 0.601 0.388 0.450 0.845 0.319 0.486 0.529&lt;BR /&gt;1.547 0.690 0.676 0.314 0.736 0.643 0.483 0.352 0.636 1.080&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;title 'Distribution of Plate Gaps';&lt;BR /&gt;ods output ParameterEstimates GoodnessOfFit FitQuantiles MyHist;&lt;BR /&gt;proc univariate data=Plates;&lt;BR /&gt;var Gap;&lt;BR /&gt;histogram / midpoints=0.2 to 1.8 by 0.2&lt;BR /&gt;lognormal(theta=est sigma=est zeta=est)&lt;BR /&gt;weibull (theta=est sigma=est c=est)&lt;BR /&gt;gamma (theta=est sigma=est alpha=est)&lt;BR /&gt;normal&lt;BR /&gt;vaxis = axis1&lt;BR /&gt;name = 'MyHist';&lt;BR /&gt;inset n mean(5.3) std='Std Dev'(5.3) skewness(5.3)&lt;BR /&gt;/ pos = ne header = 'Summary Statistics';&lt;BR /&gt;axis1 label=(a=90 r=0);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2015 07:42:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238456#M12631</guid>
      <dc:creator>SJ1991</dc:creator>
      <dc:date>2015-12-09T07:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Understand the Calculation of Parameter Estimates</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238530#M12639</link>
      <description>&lt;P&gt;The User's Guide (avaiable on line) should explain how parameters are estimated in UNIVARIATE for the different distributions. In general, moment estimates are used.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2015 16:51:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238530#M12639</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2015-12-09T16:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Understand the Calculation of Parameter Estimates</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238541#M12640</link>
      <description>&lt;P&gt;I disagree with lvm.&amp;nbsp;In general UNIVARIATE uses maximum likelihood estimation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Moments are used for Normal. Percentile fitting (optionally, moments) are used for the bounded and unbounded Johnson distribution. I believe the remining use MLE.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2015 17:44:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238541#M12640</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2015-12-09T17:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Understand the Calculation of Parameter Estimates</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238554#M12641</link>
      <description>&lt;P&gt;RIck is right, of course. I was thinking of something else.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2015 18:32:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238554#M12641</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2015-12-09T18:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Understand the Calculation of Parameter Estimates</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238630#M12644</link>
      <description>Thanks Rick.&lt;BR /&gt;I understand that these are defined using MLE.&lt;BR /&gt;Is there any guide that can help me understand how these values are calculated (step wise calculation of these statements)?&lt;BR /&gt;&lt;BR /&gt;It would be of great help.</description>
      <pubDate>Thu, 10 Dec 2015 04:39:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238630#M12644</guid>
      <dc:creator>SJ1991</dc:creator>
      <dc:date>2015-12-10T04:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Understand the Calculation of Parameter Estimates</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238654#M12645</link>
      <description>&lt;P&gt;The MLE estimates are obtained by nonlinear optimization of a likelihood or log-likelihood function. For an example, with step-by-step details, see the article&amp;nbsp;&lt;A href="http://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;</description>
      <pubDate>Thu, 10 Dec 2015 10:18:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238654#M12645</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2015-12-10T10:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: Understand the Calculation of Parameter Estimates</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238675#M12646</link>
      <description>Thank you Rick!</description>
      <pubDate>Thu, 10 Dec 2015 12:37:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Understand-the-Calculation-of-Parameter-Estimates/m-p/238675#M12646</guid>
      <dc:creator>SJ1991</dc:creator>
      <dc:date>2015-12-10T12:37:46Z</dc:date>
    </item>
  </channel>
</rss>

