<?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: Confidence Intervals for a p-value in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187370#M9747</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That would explain why the resampled values obtained with the REPORT option are all over the damn place, and not symmetric...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Mar 2015 19:42:32 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2015-03-04T19:42:32Z</dc:date>
    <item>
      <title>Confidence Intervals for a p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187363#M9740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm a SAS novice, so thanks in advance for bearing with me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have straightforward 2 sample t-tests for my variables using PROC TTEST for my continuous variables and PROC FREQ for my categorical variables. I get the 95% CI for the mean and SD in the output, but I want to report confidence intervals&lt;SPAN style="text-decoration: underline;"&gt; for my p-value&lt;/SPAN&gt;. Likewise, I have multivariable logistic and linear regressions for some of these variables, but can't generate 95% confidence intervals for the p-values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A sample of my code is attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10866i32EAFBA7CC90C35D/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="SAS code examples.PNG" title="SAS code examples.PNG" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2015 00:12:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187363#M9740</guid>
      <dc:creator>cmhlavacek</dc:creator>
      <dc:date>2015-03-01T00:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Confidence Intervals for a p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187364#M9741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can honestly say I've never heard of a confidence interval for a p-value.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you point to any statistical references for such values?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2015 00:26:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187364#M9741</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-03-01T00:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Confidence Intervals for a p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187365#M9742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One does not calculate confidence intervals for p values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2015 22:54:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187365#M9742</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2015-03-01T22:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Confidence Intervals for a p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187366#M9743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm--I'm going to disagree a bit with that assertion, The Edwards and Berry adjustment (ADJUST=SIMULATE) in the linear modeling procs allows you to specify EPS=, where epsilon is a confidence interval on the quantile.&amp;nbsp; This would establish an &lt;EM&gt;accuracy confidence&lt;/EM&gt; of 100*(1 - epsilon)%.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, the original poster could redo the analysis in PROC GLM, by changing the code to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lsmeans illicits/cl diff=all adjust=simulate(EPS=0.05 report seed=1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That should give some idea of a 95% CI.&amp;nbsp; Note that the default value for EPS is 0.01, which would give 99% confidence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope I have not marched someone over the cliff with this, though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 17:46:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187366#M9743</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2015-03-02T17:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: Confidence Intervals for a p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187367#M9744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve, you are right that one is utilizing an aspect of the uncertainty in p with this procedure. Somehow, I doubt that this is what the OP was trying to do. But we haven't heard back....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2015 19:02:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187367#M9744</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2015-03-03T19:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Confidence Intervals for a p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187368#M9745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm &lt;SPAN style="text-decoration: underline;"&gt;not sure&lt;/SPAN&gt; my poor human brain is made to handle uncertainty about uncertainty measures... &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2015 20:57:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187368#M9745</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2015-03-03T20:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Confidence Intervals for a p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187369#M9746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The p value is random variable, dependent on the data, model being used, and so on. Under the null hypothesis, p has a uniform distribution with support on the real line from 0 to 1. But the latter fact doesn't help when the null hypothesis is false, or when you don't know whether or not H0 is true (the usual situation). Under Ha, p can have a complex distribution. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2015 21:06:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187369#M9746</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2015-03-03T21:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Confidence Intervals for a p-value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187370#M9747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That would explain why the resampled values obtained with the REPORT option are all over the damn place, and not symmetric...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2015 19:42:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Confidence-Intervals-for-a-p-value/m-p/187370#M9747</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2015-03-04T19:42:32Z</dc:date>
    </item>
  </channel>
</rss>

