<?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 Goodness of fit for exponentiated Frechet in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Goodness-of-fit-for-exponentiated-Frechet/m-p/898688#M6085</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to know if SAS can do a goodness of test for other less famous distributions? Such as Frechet, exponentiated frechet, Kumaraswamy..etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Sun, 15 Oct 2023 20:10:11 GMT</pubDate>
    <dc:creator>Salah</dc:creator>
    <dc:date>2023-10-15T20:10:11Z</dc:date>
    <item>
      <title>Goodness of fit for exponentiated Frechet</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Goodness-of-fit-for-exponentiated-Frechet/m-p/898688#M6085</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to know if SAS can do a goodness of test for other less famous distributions? Such as Frechet, exponentiated frechet, Kumaraswamy..etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Sun, 15 Oct 2023 20:10:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Goodness-of-fit-for-exponentiated-Frechet/m-p/898688#M6085</guid>
      <dc:creator>Salah</dc:creator>
      <dc:date>2023-10-15T20:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Goodness of fit for exponentiated Frechet</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Goodness-of-fit-for-exponentiated-Frechet/m-p/898728#M6086</link>
      <description>&lt;P&gt;You posted the question the SAS/IML Community, so I assume you want to program these tests yourself? If so, the answer is yes. You can use the SAS/IML language to implement algorithms and statistical tests that are published in papers, textbooks, websites, etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It can be a challenge to know what GOF test to use. Some distributions have their own tests. Others use general criteria such as AIC or BIC.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In summary, you need to find the mathematical formula or algorithm that gives the GOF test, then implement it yourself. There are no built-in GOF tests in IML for obscure distributions.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 10:48:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Goodness-of-fit-for-exponentiated-Frechet/m-p/898728#M6086</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2023-10-16T10:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: Goodness of fit for exponentiated Frechet</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Goodness-of-fit-for-exponentiated-Frechet/m-p/898736#M6087</link>
      <description>&lt;P&gt;Thank you so much for the advices.&lt;/P&gt;&lt;P&gt;Are there any&amp;nbsp;&lt;SPAN&gt;built-in GOF tests in SAS in general?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 11:12:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Goodness-of-fit-for-exponentiated-Frechet/m-p/898736#M6087</guid>
      <dc:creator>Salah</dc:creator>
      <dc:date>2023-10-16T11:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: Goodness of fit for exponentiated Frechet</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Goodness-of-fit-for-exponentiated-Frechet/m-p/898769#M6088</link>
      <description>&lt;P&gt;Yes. Probably &lt;A href="https://go.documentation.sas.com/doc/en/etsug/15.2/etsug_severity_details37.htm" target="_self"&gt;the SEVERITY procedure in SAS/ETS software&lt;/A&gt; provides functionality that is closest to what you want. It provides log-likeihood GOF measures (-2*LL, AIC, BIC,...) and ECDF measures (KS, AD, CvM,...).&lt;/P&gt;
&lt;P&gt;You can &lt;A href="https://go.documentation.sas.com/doc/en/etsug/15.2/etsug_severity_details40.htm" target="_self"&gt;use the FCMP procedure to define the PDF&lt;/A&gt; (or LOGPDF) of your distribution and then call it from PROC SEVERITY. There are several &lt;A href="https://go.documentation.sas.com/doc/en/etsug/15.2/etsug_severity_examples02.htm" target="_self"&gt;examples ni the doc that you can follow&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 12:43:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Goodness-of-fit-for-exponentiated-Frechet/m-p/898769#M6088</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2023-10-16T12:43:35Z</dc:date>
    </item>
  </channel>
</rss>

