<?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: Fisher's Exact Test Not Showing p-value in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586838#M28722</link>
    <description>Monte Carlo Estimate for the Exact Test&lt;BR /&gt;Pr &amp;lt;= P 0.9481&lt;BR /&gt;99% Lower Conf Limit 0.9424&lt;BR /&gt;99% Upper Conf Limit 0.9538&lt;BR /&gt;&lt;BR /&gt;Number of Samples 10000&lt;BR /&gt;Initial Seed 358024000&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This is the data I get. How reliable is this Monte Carlo estimate? This suggests that the two variables are independent and that the treatment does not affect the outcome, does it not?</description>
    <pubDate>Fri, 06 Sep 2019 18:17:23 GMT</pubDate>
    <dc:creator>schal</dc:creator>
    <dc:date>2019-09-06T18:17:23Z</dc:date>
    <item>
      <title>Fisher's Exact Test Not Showing p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586833#M28718</link>
      <description>&lt;P&gt;Hi, so I run a Fisher's exact test, and it shows me that the table probability is &amp;lt;0.0001, but doesn't show any other p-values like the one-sided or two-sided p-values&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled.png" style="width: 399px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32282i4B0F1809834B830A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 17:56:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586833#M28718</guid>
      <dc:creator>schal</dc:creator>
      <dc:date>2019-09-06T17:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: Fisher's Exact Test Not Showing p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586834#M28719</link>
      <description>Show your code and log.</description>
      <pubDate>Fri, 06 Sep 2019 17:59:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586834#M28719</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-06T17:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Fisher's Exact Test Not Showing p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586835#M28720</link>
      <description>&lt;PRE&gt;PROC FORMAT;
	value $Oxarma '1' = 'None'
				'2' = 'Trace'
				'3' = 'Some'
				'4' = 'Unacceptable';
	value $Oxarmab '1' = 'None/Trace'
					'2' = 'None/Trace'
					'3' = 'Some'
					'4' = 'Unacceptable';
	value $Oxarmac '1' = 'Acceptable'
					'2' = 'Acceptable'
					'3' = 'Acceptable'
					'4' = 'Unacceptable';
	Run;
PROC FREQ data=first;
	tables day*Oxarma / FISHER;
	format Oxarma $Oxarma.;
	Run;
	Quit;&lt;/PRE&gt;&lt;P&gt;Log:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;PROC FREQ data=first;&lt;BR /&gt;946 tables cut*Oxarma / FISHER;&lt;BR /&gt;947 format Oxarma $Oxarma.;&lt;BR /&gt;948 Run;&lt;/P&gt;&lt;P&gt;NOTE: Writing HTML Body file: sashtml.htm&lt;BR /&gt;WARNING: Computing exact p-values for this problem may require much time and memory. Press the&lt;BR /&gt;system interrupt key to terminate exact computations.&lt;BR /&gt;WARNING: There is not enough memory available to compute Fisher's exact test.&lt;BR /&gt;NOTE: There were 913 observations read from the data set WORK.FIRST.&lt;BR /&gt;NOTE: PROCEDURE FREQ used (Total process time):&lt;BR /&gt;real time 5:32.70&lt;BR /&gt;cpu time 5:28.39&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 06 Sep 2019 18:04:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586835#M28720</guid>
      <dc:creator>schal</dc:creator>
      <dc:date>2019-09-06T18:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Fisher's Exact Test Not Showing p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586836#M28721</link>
      <description>&lt;P&gt;Your answer is in the WARNING.&lt;/P&gt;
&lt;P&gt;WARNING: There is not enough memory available to compute Fisher's exact test.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The suggestion would be to either use the asymptotic test or get a Monte-Carlo estimate of the exact p-value by adding the MC option to the EXACT statement.&lt;/P&gt;
&lt;P&gt;PROC FREQ DATA=first;&lt;/P&gt;
&lt;P&gt;TABLES cut*Oxarma;&lt;/P&gt;
&lt;P&gt;EXACT FISHER/MC:&lt;/P&gt;
&lt;P&gt;RUN:&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 18:10:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586836#M28721</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2019-09-06T18:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Fisher's Exact Test Not Showing p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586838#M28722</link>
      <description>Monte Carlo Estimate for the Exact Test&lt;BR /&gt;Pr &amp;lt;= P 0.9481&lt;BR /&gt;99% Lower Conf Limit 0.9424&lt;BR /&gt;99% Upper Conf Limit 0.9538&lt;BR /&gt;&lt;BR /&gt;Number of Samples 10000&lt;BR /&gt;Initial Seed 358024000&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This is the data I get. How reliable is this Monte Carlo estimate? This suggests that the two variables are independent and that the treatment does not affect the outcome, does it not?</description>
      <pubDate>Fri, 06 Sep 2019 18:17:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586838#M28722</guid>
      <dc:creator>schal</dc:creator>
      <dc:date>2019-09-06T18:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Fisher's Exact Test Not Showing p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586843#M28723</link>
      <description>&lt;P&gt;The MC estimate is very reliable. Interpretation in terms of treatment and outcome is left to the researcher. Only he/she knows the details of the data. For instance, why so many data are missing...&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 18:35:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586843#M28723</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-09-06T18:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Fisher's Exact Test Not Showing p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586844#M28724</link>
      <description>I see, thank you. I achieved significance for other variable measured. Missing data is due to having sensory panelists that did not participate in every session.</description>
      <pubDate>Fri, 06 Sep 2019 18:42:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586844#M28724</guid>
      <dc:creator>schal</dc:creator>
      <dc:date>2019-09-06T18:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Fisher's Exact Test Not Showing p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586846#M28725</link>
      <description>You should mark SAS_rob's answer as correct, not your own. He provided you the workaround to get your problem solved.</description>
      <pubDate>Fri, 06 Sep 2019 19:05:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586846#M28725</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-06T19:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Fisher's Exact Test Not Showing p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586972#M28730</link>
      <description>Yes, that's what I meant to do, thank you for bringing that to my attention.</description>
      <pubDate>Sat, 07 Sep 2019 12:38:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fisher-s-Exact-Test-Not-Showing-p-value/m-p/586972#M28730</guid>
      <dc:creator>schal</dc:creator>
      <dc:date>2019-09-07T12:38:29Z</dc:date>
    </item>
  </channel>
</rss>

