<?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: Get goodness of fit tests for weibull distribution in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Get-goodness-of-fit-tests-for-weibull-distribution/m-p/368485#M19335</link>
    <description>&lt;P&gt;The proposed code did not gice GOF tables unless c&amp;gt;2. I had to put in a value of theta to getW-sq and A-sq GOF statistics.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there another procedure available to fit a weibull distribution using point frequency data?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Mon, 19 Jun 2017 20:41:12 GMT</pubDate>
    <dc:creator>SB2017</dc:creator>
    <dc:date>2017-06-19T20:41:12Z</dc:date>
    <item>
      <title>Get goodness of fit tests for weibull distribution</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-goodness-of-fit-tests-for-weibull-distribution/m-p/344973#M18138</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am trying to fi a weibull distribution to a list of frequency data, and I am using the following code in SAS 9.4&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;univariate&lt;/STRONG&gt; data=data1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; var group;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; freq count;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; histogram / weibull (Theta=est) midpoints=&lt;STRONG&gt;1&lt;/STRONG&gt; to &lt;STRONG&gt;28&lt;/STRONG&gt; by &lt;STRONG&gt;1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I got my parameter estimates however SAS did not give me any Goodness of fit statistics. Is there a specific coding that allows me to get one?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank you&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 13:56:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-goodness-of-fit-tests-for-weibull-distribution/m-p/344973#M18138</guid>
      <dc:creator>SB2017</dc:creator>
      <dc:date>2017-03-28T13:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Get goodness of fit tests for weibull distribution</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-goodness-of-fit-tests-for-weibull-distribution/m-p/344981#M18141</link>
      <description>&lt;P&gt;You code looks correct and should give GOF tables. Run the following and see if you see the "Goodness-of-Fit Tests for Weibull Distribution" table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods trace on;&lt;BR /&gt;proc univariate data=sashelp.cars;
   var mpg_city;
   freq cylinders;
   histogram mpg_city / weibull (Theta=est) midpoints=10 to 60 by 2.5;
run;&lt;BR /&gt;ods trace off;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Mar 2017 14:03:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-goodness-of-fit-tests-for-weibull-distribution/m-p/344981#M18141</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-03-28T14:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Get goodness of fit tests for weibull distribution</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-goodness-of-fit-tests-for-weibull-distribution/m-p/368485#M19335</link>
      <description>&lt;P&gt;The proposed code did not gice GOF tables unless c&amp;gt;2. I had to put in a value of theta to getW-sq and A-sq GOF statistics.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there another procedure available to fit a weibull distribution using point frequency data?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 20:41:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-goodness-of-fit-tests-for-weibull-distribution/m-p/368485#M19335</guid>
      <dc:creator>SB2017</dc:creator>
      <dc:date>2017-06-19T20:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: Get goodness of fit tests for weibull distribution</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Get-goodness-of-fit-tests-for-weibull-distribution/m-p/368531#M19337</link>
      <description>&lt;P&gt;Yes,&lt;A href="http://support.sas.com/documentation/cdl/en/procstat/68142/HTML/default/viewer.htm#procstat_univariate_details52.htm" target="_self"&gt; the documentation for the GOF tests in PROC UNIVARIATE&lt;/A&gt; mentions that the ECDF tests for GOF are only available when c &amp;gt; 2.&lt;/P&gt;
&lt;P&gt;I'm not near a copy of Stephens and D'Agostino&amp;nbsp;right now, so I can't look up&amp;nbsp;why that constraint is required.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 23:53:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Get-goodness-of-fit-tests-for-weibull-distribution/m-p/368531#M19337</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-06-19T23:53:57Z</dc:date>
    </item>
  </channel>
</rss>

