Why is my p-value correlated to difference between means in two sample tests? The 2019 Stack Overflow Developer Survey Results Are InIs it possible to use a two sample $t$ test here?Mann-Whitney null hypothesis under unequal varianceDoes statistically insignificant difference of means imply equality of means?Evaluating close calls with the Wilcon Sum Rank test two sided vs. one sidedTest for systematic difference between two samplesHow to adjust p-value to reject null hypothesis from sample size in Mann Whitney U test?In distribution tests, why do we assume that any distribution is true unless proven otherwise?Calculating the p-value of two independent counts?Mann–Whitney U test shows there is a difference between two sample sets, how do I know which sample set is better?Two sample t-test to show equality of the two means

How can I define good in a religion that claims no moral authority?

How to display lines in a file like ls displays files in a directory?

Can withdrawing asylum be illegal?

Is it okay to consider publishing in my first year of PhD?

Mathematics of imaging the black hole

Why does the nucleus not repel itself?

Why isn't the circumferential light around the M87 black hole's event horizon symmetric?

Getting crown tickets for Statue of Liberty

Why was M87 targeted for the Event Horizon Telescope instead of Sagittarius A*?

How to support a colleague who finds meetings extremely tiring?

Falsification in Math vs Science

I am an eight letter word. What am I?

Can we generate random numbers using irrational numbers like π and e?

Correct punctuation for showing a character's confusion

Can an undergraduate be advised by a professor who is very far away?

writing variables above the numbers in tikz picture

A word that means fill it to the required quantity

Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?

Are there any other methods to apply to solving simultaneous equations?

Why can't devices on different VLANs, but on the same subnet, communicate?

Is it possible for absolutely everyone to attain enlightenment?

Why couldn't they take pictures of a closer black hole?

Accepted by European university, rejected by all American ones I applied to? Possible reasons?

What could be the right powersource for 15 seconds lifespan disposable giant chainsaw?



Why is my p-value correlated to difference between means in two sample tests?



The 2019 Stack Overflow Developer Survey Results Are InIs it possible to use a two sample $t$ test here?Mann-Whitney null hypothesis under unequal varianceDoes statistically insignificant difference of means imply equality of means?Evaluating close calls with the Wilcon Sum Rank test two sided vs. one sidedTest for systematic difference between two samplesHow to adjust p-value to reject null hypothesis from sample size in Mann Whitney U test?In distribution tests, why do we assume that any distribution is true unless proven otherwise?Calculating the p-value of two independent counts?Mann–Whitney U test shows there is a difference between two sample sets, how do I know which sample set is better?Two sample t-test to show equality of the two means



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4












$begingroup$


A colleague has recently made the claim that a large p-value was not more support for the null hypothesis than a low one. Of course, this is also what I learned (uniform distribution under the null hypothesis, we can only reject the null hypothesis...). But when I simulate two random normal distributions (100 samples in each group) in R, my p-value is correlated to the difference (averaged over 30 repetitions) between the two means (with for example a T test or a Mann & Whitney test).



Why is my p-value, above the threshold of 0.05, correlated to the difference between the means of my two groups?



enter image description here



With 1000 repetitions for each x (difference between means/2) value.
enter image description here



My R code in case this is just a silly mistake.



pvaluetot<-NULL
xtot<-NULL
seqx<-seq(0,5,0.01)
for (x in seqx)
ptemp<-NULL
pmean<-NULL
a<-0

repeat
a<-a+1
pop1<-rnorm(100,0+x,2)
pop2<-rnorm(100,0-x,2)
pvalue<-t.test(pop1,pop2)$p.value

ptemp<-c(ptemp,pvalue)
#print(ptemp)
if (a==30)
break


pmean<-mean(ptemp)
pvaluetot<-c(pvaluetot,pmean)
xtot<-c(xtot,x)
print(x)


pvaluetot
xtot
plot(pvaluetot,xtot)









share|cite|improve this question











$endgroup$


















    4












    $begingroup$


    A colleague has recently made the claim that a large p-value was not more support for the null hypothesis than a low one. Of course, this is also what I learned (uniform distribution under the null hypothesis, we can only reject the null hypothesis...). But when I simulate two random normal distributions (100 samples in each group) in R, my p-value is correlated to the difference (averaged over 30 repetitions) between the two means (with for example a T test or a Mann & Whitney test).



    Why is my p-value, above the threshold of 0.05, correlated to the difference between the means of my two groups?



    enter image description here



    With 1000 repetitions for each x (difference between means/2) value.
    enter image description here



    My R code in case this is just a silly mistake.



    pvaluetot<-NULL
    xtot<-NULL
    seqx<-seq(0,5,0.01)
    for (x in seqx)
    ptemp<-NULL
    pmean<-NULL
    a<-0

    repeat
    a<-a+1
    pop1<-rnorm(100,0+x,2)
    pop2<-rnorm(100,0-x,2)
    pvalue<-t.test(pop1,pop2)$p.value

    ptemp<-c(ptemp,pvalue)
    #print(ptemp)
    if (a==30)
    break


    pmean<-mean(ptemp)
    pvaluetot<-c(pvaluetot,pmean)
    xtot<-c(xtot,x)
    print(x)


    pvaluetot
    xtot
    plot(pvaluetot,xtot)









    share|cite|improve this question











    $endgroup$














      4












      4








      4


      0



      $begingroup$


      A colleague has recently made the claim that a large p-value was not more support for the null hypothesis than a low one. Of course, this is also what I learned (uniform distribution under the null hypothesis, we can only reject the null hypothesis...). But when I simulate two random normal distributions (100 samples in each group) in R, my p-value is correlated to the difference (averaged over 30 repetitions) between the two means (with for example a T test or a Mann & Whitney test).



      Why is my p-value, above the threshold of 0.05, correlated to the difference between the means of my two groups?



      enter image description here



      With 1000 repetitions for each x (difference between means/2) value.
      enter image description here



      My R code in case this is just a silly mistake.



      pvaluetot<-NULL
      xtot<-NULL
      seqx<-seq(0,5,0.01)
      for (x in seqx)
      ptemp<-NULL
      pmean<-NULL
      a<-0

      repeat
      a<-a+1
      pop1<-rnorm(100,0+x,2)
      pop2<-rnorm(100,0-x,2)
      pvalue<-t.test(pop1,pop2)$p.value

      ptemp<-c(ptemp,pvalue)
      #print(ptemp)
      if (a==30)
      break


      pmean<-mean(ptemp)
      pvaluetot<-c(pvaluetot,pmean)
      xtot<-c(xtot,x)
      print(x)


      pvaluetot
      xtot
      plot(pvaluetot,xtot)









      share|cite|improve this question











      $endgroup$




      A colleague has recently made the claim that a large p-value was not more support for the null hypothesis than a low one. Of course, this is also what I learned (uniform distribution under the null hypothesis, we can only reject the null hypothesis...). But when I simulate two random normal distributions (100 samples in each group) in R, my p-value is correlated to the difference (averaged over 30 repetitions) between the two means (with for example a T test or a Mann & Whitney test).



      Why is my p-value, above the threshold of 0.05, correlated to the difference between the means of my two groups?



      enter image description here



      With 1000 repetitions for each x (difference between means/2) value.
      enter image description here



      My R code in case this is just a silly mistake.



      pvaluetot<-NULL
      xtot<-NULL
      seqx<-seq(0,5,0.01)
      for (x in seqx)
      ptemp<-NULL
      pmean<-NULL
      a<-0

      repeat
      a<-a+1
      pop1<-rnorm(100,0+x,2)
      pop2<-rnorm(100,0-x,2)
      pvalue<-t.test(pop1,pop2)$p.value

      ptemp<-c(ptemp,pvalue)
      #print(ptemp)
      if (a==30)
      break


      pmean<-mean(ptemp)
      pvaluetot<-c(pvaluetot,pmean)
      xtot<-c(xtot,x)
      print(x)


      pvaluetot
      xtot
      plot(pvaluetot,xtot)






      hypothesis-testing statistical-significance p-value effect-size






      share|cite|improve this question















      share|cite|improve this question













      share|cite|improve this question




      share|cite|improve this question








      edited 2 days ago







      Nakx

















      asked 2 days ago









      NakxNakx

      334116




      334116




















          3 Answers
          3






          active

          oldest

          votes


















          4












          $begingroup$

          As you said, the p-value is uniformly distributed under the null hypothesis. That is, if the null hypothesis is really true, then upon repeated experiments we expect to find a fully random, flat distribution of p-values between [0, 1]. Consequently, a frequentist p-value says nothing about how likely the null hypothesis is to be true, since any p-value is equally probable under the null.



          What you're looking at is the distribution of p-values under an alternative hypothesis. Depending on the formulation of this hypothesis, the resulting p-values can have any non-Uniform, positively skewed distribution between [0, 1]. But this doesn't tell you anything about the probability of the null. The reason is that the p-value expresses the probability of the evidence under the null hypothesis, i.e. $p(D|H_0)$, whereas you want to know $p(H_0|D)$. These two are related by Bayes' rule:
          $$
          p(H_0|D) = fracH_0)p(H_0)p(D
          $$

          This means that in order to calculate the probability you're interested in, you need to know and take into account the prior probability of the null being true ($p(H_0)$), the prior probability of the null being false ($p(neg H_0)$) and the probability of the data given that the null is false ($p(D|neg H_0)$). This is the purview of Bayesian, rather than frequentist statistics.



          As for the correlation you observed: as I said above the p-values will be positively skewed under the alternative hypothesis. How skewed depends what that alternative hypothesis is. In the case of a two-sample t-test, the more you increase the difference between your population means, the more skewed the p-values will become. This reflects the fact that you're making your samples increasingly more different from what is plausible under the null, and so by definition the resulting p-values (reflecting the probability of the data under the null) must decrease.






          share|cite|improve this answer









          $endgroup$




















            5












            $begingroup$

            Why would you expect anything else? You don't need a simulation to know this is going to happen. Look at the formula for the t-statistic:
            $t = fracbarx_1 - barx_2 sqrt fracs^2_1n_1 + fracs^2_2n_2 $



            Obviously if you increase the true difference of means you expect $barx_1 - barx_2$ will be larger. You are holding the variance and sample size constant, so the t-statistic must be larger and thus the p-value smaller.



            I think you are confusing a philosophical rule about hypothesis testing with a mathematical fact. If the null hypothesis is true, you would expect a higher p-value. This has to be true in order for hypothesis testing to make any sense.






            share|cite|improve this answer









            $endgroup$




















              2












              $begingroup$



              You should indeed not interpret the p-value as a probability that the null hypothesis is true.



              However, a higher p-value does relate to stronger support for the null hypothesis.




              Considering p-values as a random variable



              You could consider p-values as a transformation of your statistic. See for instance the secondary x-axis in the graph below in which the t-distribution is plotted with $nu=99$.



              secondary x-axis



              Here you see that a larger p-value corresponds to a smaller t-statistic (and also, for a two-sided test, there are two t-statistic associated with one p-value).



              Distribution of p-values $P(textp-value|mu_1-mu_2)$



              When we plot the distribution density of the p-values, parameterized by $mu_1-mu_2$, you see that higher p-values are less likely for $mu_1-mu_2 neq 0$.



              distribution of p-values



              # compute CDF for a given observed p-value and parameter ncp=mu_1-mu_2
              qp <- function(p,ncp)
              from_p_to_t <- qt(1-p/2,99) # transform from p-value to t-statistic
              1-pt(from_p_to_t,99,ncp=ncp) + pt(-from_p_to_t,99,ncp=ncp) # compute CDF for t-statistic (two-sided)

              qp <- Vectorize(qp)

              # plotting density function
              p <- seq(0,1,0.001)
              plot(-1,-1,
              xlim=c(0,1), ylim=c(0,9),
              xlab = "p-value", ylab = "probability density")

              # use difference between CDF to plot PDF
              lines(p[-1]-0.001/2,(qp(p,0)[-1]-qp(p,0)[-1001])/0.001,type="l")
              lines(p[-1]-0.001/2,(qp(p,1)[-1]-qp(p,1)[-1001])/0.001,type="l", lty=2)
              lines(p[-1]-0.001/2,(qp(p,2)[-1]-qp(p,2)[-1001])/0.001,type="l", lty=3)


              The bayes factor, the ratio of the likelihood for different hypotheses is larger for larger p-values. And you could consider higher p-values as stronger support. Depending on the alternative hypothesis this strong support is reached at different p-values. The more extreme the alternative hypothesis, or the larger the sample of the test, the smaller the p-value needs to be in order to be strong support.



              bayes-factor




              Illustration



              See below an example with simulations for two different situations. You sample $X sim N(mu_1,2)$ and $X sim N(mu_2,2)$ Let in one case




              • $mu_i sim N(i,1)$ such that $mu_2-mu_1 sim N(1,sqrt2)$

              the other case




              • $mu_i sim N(0,1)$ such that $mu_2-mu_1 sim
                N(0,sqrt2)$
                .

              simulation



              In the first case you can see that the probability for $mu_1-mu_2$ is most likely to be around 1, also for higher p-values. This is because the marginal probability $mu_1-mu_2 sim N(1,sqrt2)$ is already close to 1 to start with. So a high p-value will be support for the hypothesis $mu_1-mu_2$ but is is not strong enough.



              In the second case you can see that $mu_1-mu_2$ is indeed most likely to be around zero when the p-value is large. So, you could consider it as some sort of support for the null hypothesis.



              So in any of the cases a high p-value is support for the null hypothesis. But, it should not be considered as the probability that the hypothesis is true. This probability needs to be considered case by case. You can evaluate it when you know the joint distribution of the mean and the p-value (that is, you know something like a prior probability for the distribution of the mean).



              Sidenote: When you use the p-value in this way, to indicate support for the null hypothesis, then you are actually not using this value in the way that is was intended for. Then you may better just report the t-statistic and present something like a plot of a likelihood function (or bayes factor).






              share|cite|improve this answer











              $endgroup$













                Your Answer





                StackExchange.ifUsing("editor", function ()
                return StackExchange.using("mathjaxEditing", function ()
                StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
                StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
                );
                );
                , "mathjax-editing");

                StackExchange.ready(function()
                var channelOptions =
                tags: "".split(" "),
                id: "65"
                ;
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function()
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled)
                StackExchange.using("snippets", function()
                createEditor();
                );

                else
                createEditor();

                );

                function createEditor()
                StackExchange.prepareEditor(
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: false,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: null,
                bindNavPrevention: true,
                postfix: "",
                imageUploader:
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                ,
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                );



                );













                draft saved

                draft discarded


















                StackExchange.ready(
                function ()
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstats.stackexchange.com%2fquestions%2f402138%2fwhy-is-my-p-value-correlated-to-difference-between-means-in-two-sample-tests%23new-answer', 'question_page');

                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                4












                $begingroup$

                As you said, the p-value is uniformly distributed under the null hypothesis. That is, if the null hypothesis is really true, then upon repeated experiments we expect to find a fully random, flat distribution of p-values between [0, 1]. Consequently, a frequentist p-value says nothing about how likely the null hypothesis is to be true, since any p-value is equally probable under the null.



                What you're looking at is the distribution of p-values under an alternative hypothesis. Depending on the formulation of this hypothesis, the resulting p-values can have any non-Uniform, positively skewed distribution between [0, 1]. But this doesn't tell you anything about the probability of the null. The reason is that the p-value expresses the probability of the evidence under the null hypothesis, i.e. $p(D|H_0)$, whereas you want to know $p(H_0|D)$. These two are related by Bayes' rule:
                $$
                p(H_0|D) = fracH_0)p(H_0)p(D
                $$

                This means that in order to calculate the probability you're interested in, you need to know and take into account the prior probability of the null being true ($p(H_0)$), the prior probability of the null being false ($p(neg H_0)$) and the probability of the data given that the null is false ($p(D|neg H_0)$). This is the purview of Bayesian, rather than frequentist statistics.



                As for the correlation you observed: as I said above the p-values will be positively skewed under the alternative hypothesis. How skewed depends what that alternative hypothesis is. In the case of a two-sample t-test, the more you increase the difference between your population means, the more skewed the p-values will become. This reflects the fact that you're making your samples increasingly more different from what is plausible under the null, and so by definition the resulting p-values (reflecting the probability of the data under the null) must decrease.






                share|cite|improve this answer









                $endgroup$

















                  4












                  $begingroup$

                  As you said, the p-value is uniformly distributed under the null hypothesis. That is, if the null hypothesis is really true, then upon repeated experiments we expect to find a fully random, flat distribution of p-values between [0, 1]. Consequently, a frequentist p-value says nothing about how likely the null hypothesis is to be true, since any p-value is equally probable under the null.



                  What you're looking at is the distribution of p-values under an alternative hypothesis. Depending on the formulation of this hypothesis, the resulting p-values can have any non-Uniform, positively skewed distribution between [0, 1]. But this doesn't tell you anything about the probability of the null. The reason is that the p-value expresses the probability of the evidence under the null hypothesis, i.e. $p(D|H_0)$, whereas you want to know $p(H_0|D)$. These two are related by Bayes' rule:
                  $$
                  p(H_0|D) = fracH_0)p(H_0)p(D
                  $$

                  This means that in order to calculate the probability you're interested in, you need to know and take into account the prior probability of the null being true ($p(H_0)$), the prior probability of the null being false ($p(neg H_0)$) and the probability of the data given that the null is false ($p(D|neg H_0)$). This is the purview of Bayesian, rather than frequentist statistics.



                  As for the correlation you observed: as I said above the p-values will be positively skewed under the alternative hypothesis. How skewed depends what that alternative hypothesis is. In the case of a two-sample t-test, the more you increase the difference between your population means, the more skewed the p-values will become. This reflects the fact that you're making your samples increasingly more different from what is plausible under the null, and so by definition the resulting p-values (reflecting the probability of the data under the null) must decrease.






                  share|cite|improve this answer









                  $endgroup$















                    4












                    4








                    4





                    $begingroup$

                    As you said, the p-value is uniformly distributed under the null hypothesis. That is, if the null hypothesis is really true, then upon repeated experiments we expect to find a fully random, flat distribution of p-values between [0, 1]. Consequently, a frequentist p-value says nothing about how likely the null hypothesis is to be true, since any p-value is equally probable under the null.



                    What you're looking at is the distribution of p-values under an alternative hypothesis. Depending on the formulation of this hypothesis, the resulting p-values can have any non-Uniform, positively skewed distribution between [0, 1]. But this doesn't tell you anything about the probability of the null. The reason is that the p-value expresses the probability of the evidence under the null hypothesis, i.e. $p(D|H_0)$, whereas you want to know $p(H_0|D)$. These two are related by Bayes' rule:
                    $$
                    p(H_0|D) = fracH_0)p(H_0)p(D
                    $$

                    This means that in order to calculate the probability you're interested in, you need to know and take into account the prior probability of the null being true ($p(H_0)$), the prior probability of the null being false ($p(neg H_0)$) and the probability of the data given that the null is false ($p(D|neg H_0)$). This is the purview of Bayesian, rather than frequentist statistics.



                    As for the correlation you observed: as I said above the p-values will be positively skewed under the alternative hypothesis. How skewed depends what that alternative hypothesis is. In the case of a two-sample t-test, the more you increase the difference between your population means, the more skewed the p-values will become. This reflects the fact that you're making your samples increasingly more different from what is plausible under the null, and so by definition the resulting p-values (reflecting the probability of the data under the null) must decrease.






                    share|cite|improve this answer









                    $endgroup$



                    As you said, the p-value is uniformly distributed under the null hypothesis. That is, if the null hypothesis is really true, then upon repeated experiments we expect to find a fully random, flat distribution of p-values between [0, 1]. Consequently, a frequentist p-value says nothing about how likely the null hypothesis is to be true, since any p-value is equally probable under the null.



                    What you're looking at is the distribution of p-values under an alternative hypothesis. Depending on the formulation of this hypothesis, the resulting p-values can have any non-Uniform, positively skewed distribution between [0, 1]. But this doesn't tell you anything about the probability of the null. The reason is that the p-value expresses the probability of the evidence under the null hypothesis, i.e. $p(D|H_0)$, whereas you want to know $p(H_0|D)$. These two are related by Bayes' rule:
                    $$
                    p(H_0|D) = fracH_0)p(H_0)p(D
                    $$

                    This means that in order to calculate the probability you're interested in, you need to know and take into account the prior probability of the null being true ($p(H_0)$), the prior probability of the null being false ($p(neg H_0)$) and the probability of the data given that the null is false ($p(D|neg H_0)$). This is the purview of Bayesian, rather than frequentist statistics.



                    As for the correlation you observed: as I said above the p-values will be positively skewed under the alternative hypothesis. How skewed depends what that alternative hypothesis is. In the case of a two-sample t-test, the more you increase the difference between your population means, the more skewed the p-values will become. This reflects the fact that you're making your samples increasingly more different from what is plausible under the null, and so by definition the resulting p-values (reflecting the probability of the data under the null) must decrease.







                    share|cite|improve this answer












                    share|cite|improve this answer



                    share|cite|improve this answer










                    answered 2 days ago









                    Ruben van BergenRuben van Bergen

                    4,1591924




                    4,1591924























                        5












                        $begingroup$

                        Why would you expect anything else? You don't need a simulation to know this is going to happen. Look at the formula for the t-statistic:
                        $t = fracbarx_1 - barx_2 sqrt fracs^2_1n_1 + fracs^2_2n_2 $



                        Obviously if you increase the true difference of means you expect $barx_1 - barx_2$ will be larger. You are holding the variance and sample size constant, so the t-statistic must be larger and thus the p-value smaller.



                        I think you are confusing a philosophical rule about hypothesis testing with a mathematical fact. If the null hypothesis is true, you would expect a higher p-value. This has to be true in order for hypothesis testing to make any sense.






                        share|cite|improve this answer









                        $endgroup$

















                          5












                          $begingroup$

                          Why would you expect anything else? You don't need a simulation to know this is going to happen. Look at the formula for the t-statistic:
                          $t = fracbarx_1 - barx_2 sqrt fracs^2_1n_1 + fracs^2_2n_2 $



                          Obviously if you increase the true difference of means you expect $barx_1 - barx_2$ will be larger. You are holding the variance and sample size constant, so the t-statistic must be larger and thus the p-value smaller.



                          I think you are confusing a philosophical rule about hypothesis testing with a mathematical fact. If the null hypothesis is true, you would expect a higher p-value. This has to be true in order for hypothesis testing to make any sense.






                          share|cite|improve this answer









                          $endgroup$















                            5












                            5








                            5





                            $begingroup$

                            Why would you expect anything else? You don't need a simulation to know this is going to happen. Look at the formula for the t-statistic:
                            $t = fracbarx_1 - barx_2 sqrt fracs^2_1n_1 + fracs^2_2n_2 $



                            Obviously if you increase the true difference of means you expect $barx_1 - barx_2$ will be larger. You are holding the variance and sample size constant, so the t-statistic must be larger and thus the p-value smaller.



                            I think you are confusing a philosophical rule about hypothesis testing with a mathematical fact. If the null hypothesis is true, you would expect a higher p-value. This has to be true in order for hypothesis testing to make any sense.






                            share|cite|improve this answer









                            $endgroup$



                            Why would you expect anything else? You don't need a simulation to know this is going to happen. Look at the formula for the t-statistic:
                            $t = fracbarx_1 - barx_2 sqrt fracs^2_1n_1 + fracs^2_2n_2 $



                            Obviously if you increase the true difference of means you expect $barx_1 - barx_2$ will be larger. You are holding the variance and sample size constant, so the t-statistic must be larger and thus the p-value smaller.



                            I think you are confusing a philosophical rule about hypothesis testing with a mathematical fact. If the null hypothesis is true, you would expect a higher p-value. This has to be true in order for hypothesis testing to make any sense.







                            share|cite|improve this answer












                            share|cite|improve this answer



                            share|cite|improve this answer










                            answered 2 days ago









                            Matt PMatt P

                            1616




                            1616





















                                2












                                $begingroup$



                                You should indeed not interpret the p-value as a probability that the null hypothesis is true.



                                However, a higher p-value does relate to stronger support for the null hypothesis.




                                Considering p-values as a random variable



                                You could consider p-values as a transformation of your statistic. See for instance the secondary x-axis in the graph below in which the t-distribution is plotted with $nu=99$.



                                secondary x-axis



                                Here you see that a larger p-value corresponds to a smaller t-statistic (and also, for a two-sided test, there are two t-statistic associated with one p-value).



                                Distribution of p-values $P(textp-value|mu_1-mu_2)$



                                When we plot the distribution density of the p-values, parameterized by $mu_1-mu_2$, you see that higher p-values are less likely for $mu_1-mu_2 neq 0$.



                                distribution of p-values



                                # compute CDF for a given observed p-value and parameter ncp=mu_1-mu_2
                                qp <- function(p,ncp)
                                from_p_to_t <- qt(1-p/2,99) # transform from p-value to t-statistic
                                1-pt(from_p_to_t,99,ncp=ncp) + pt(-from_p_to_t,99,ncp=ncp) # compute CDF for t-statistic (two-sided)

                                qp <- Vectorize(qp)

                                # plotting density function
                                p <- seq(0,1,0.001)
                                plot(-1,-1,
                                xlim=c(0,1), ylim=c(0,9),
                                xlab = "p-value", ylab = "probability density")

                                # use difference between CDF to plot PDF
                                lines(p[-1]-0.001/2,(qp(p,0)[-1]-qp(p,0)[-1001])/0.001,type="l")
                                lines(p[-1]-0.001/2,(qp(p,1)[-1]-qp(p,1)[-1001])/0.001,type="l", lty=2)
                                lines(p[-1]-0.001/2,(qp(p,2)[-1]-qp(p,2)[-1001])/0.001,type="l", lty=3)


                                The bayes factor, the ratio of the likelihood for different hypotheses is larger for larger p-values. And you could consider higher p-values as stronger support. Depending on the alternative hypothesis this strong support is reached at different p-values. The more extreme the alternative hypothesis, or the larger the sample of the test, the smaller the p-value needs to be in order to be strong support.



                                bayes-factor




                                Illustration



                                See below an example with simulations for two different situations. You sample $X sim N(mu_1,2)$ and $X sim N(mu_2,2)$ Let in one case




                                • $mu_i sim N(i,1)$ such that $mu_2-mu_1 sim N(1,sqrt2)$

                                the other case




                                • $mu_i sim N(0,1)$ such that $mu_2-mu_1 sim
                                  N(0,sqrt2)$
                                  .

                                simulation



                                In the first case you can see that the probability for $mu_1-mu_2$ is most likely to be around 1, also for higher p-values. This is because the marginal probability $mu_1-mu_2 sim N(1,sqrt2)$ is already close to 1 to start with. So a high p-value will be support for the hypothesis $mu_1-mu_2$ but is is not strong enough.



                                In the second case you can see that $mu_1-mu_2$ is indeed most likely to be around zero when the p-value is large. So, you could consider it as some sort of support for the null hypothesis.



                                So in any of the cases a high p-value is support for the null hypothesis. But, it should not be considered as the probability that the hypothesis is true. This probability needs to be considered case by case. You can evaluate it when you know the joint distribution of the mean and the p-value (that is, you know something like a prior probability for the distribution of the mean).



                                Sidenote: When you use the p-value in this way, to indicate support for the null hypothesis, then you are actually not using this value in the way that is was intended for. Then you may better just report the t-statistic and present something like a plot of a likelihood function (or bayes factor).






                                share|cite|improve this answer











                                $endgroup$

















                                  2












                                  $begingroup$



                                  You should indeed not interpret the p-value as a probability that the null hypothesis is true.



                                  However, a higher p-value does relate to stronger support for the null hypothesis.




                                  Considering p-values as a random variable



                                  You could consider p-values as a transformation of your statistic. See for instance the secondary x-axis in the graph below in which the t-distribution is plotted with $nu=99$.



                                  secondary x-axis



                                  Here you see that a larger p-value corresponds to a smaller t-statistic (and also, for a two-sided test, there are two t-statistic associated with one p-value).



                                  Distribution of p-values $P(textp-value|mu_1-mu_2)$



                                  When we plot the distribution density of the p-values, parameterized by $mu_1-mu_2$, you see that higher p-values are less likely for $mu_1-mu_2 neq 0$.



                                  distribution of p-values



                                  # compute CDF for a given observed p-value and parameter ncp=mu_1-mu_2
                                  qp <- function(p,ncp)
                                  from_p_to_t <- qt(1-p/2,99) # transform from p-value to t-statistic
                                  1-pt(from_p_to_t,99,ncp=ncp) + pt(-from_p_to_t,99,ncp=ncp) # compute CDF for t-statistic (two-sided)

                                  qp <- Vectorize(qp)

                                  # plotting density function
                                  p <- seq(0,1,0.001)
                                  plot(-1,-1,
                                  xlim=c(0,1), ylim=c(0,9),
                                  xlab = "p-value", ylab = "probability density")

                                  # use difference between CDF to plot PDF
                                  lines(p[-1]-0.001/2,(qp(p,0)[-1]-qp(p,0)[-1001])/0.001,type="l")
                                  lines(p[-1]-0.001/2,(qp(p,1)[-1]-qp(p,1)[-1001])/0.001,type="l", lty=2)
                                  lines(p[-1]-0.001/2,(qp(p,2)[-1]-qp(p,2)[-1001])/0.001,type="l", lty=3)


                                  The bayes factor, the ratio of the likelihood for different hypotheses is larger for larger p-values. And you could consider higher p-values as stronger support. Depending on the alternative hypothesis this strong support is reached at different p-values. The more extreme the alternative hypothesis, or the larger the sample of the test, the smaller the p-value needs to be in order to be strong support.



                                  bayes-factor




                                  Illustration



                                  See below an example with simulations for two different situations. You sample $X sim N(mu_1,2)$ and $X sim N(mu_2,2)$ Let in one case




                                  • $mu_i sim N(i,1)$ such that $mu_2-mu_1 sim N(1,sqrt2)$

                                  the other case




                                  • $mu_i sim N(0,1)$ such that $mu_2-mu_1 sim
                                    N(0,sqrt2)$
                                    .

                                  simulation



                                  In the first case you can see that the probability for $mu_1-mu_2$ is most likely to be around 1, also for higher p-values. This is because the marginal probability $mu_1-mu_2 sim N(1,sqrt2)$ is already close to 1 to start with. So a high p-value will be support for the hypothesis $mu_1-mu_2$ but is is not strong enough.



                                  In the second case you can see that $mu_1-mu_2$ is indeed most likely to be around zero when the p-value is large. So, you could consider it as some sort of support for the null hypothesis.



                                  So in any of the cases a high p-value is support for the null hypothesis. But, it should not be considered as the probability that the hypothesis is true. This probability needs to be considered case by case. You can evaluate it when you know the joint distribution of the mean and the p-value (that is, you know something like a prior probability for the distribution of the mean).



                                  Sidenote: When you use the p-value in this way, to indicate support for the null hypothesis, then you are actually not using this value in the way that is was intended for. Then you may better just report the t-statistic and present something like a plot of a likelihood function (or bayes factor).






                                  share|cite|improve this answer











                                  $endgroup$















                                    2












                                    2








                                    2





                                    $begingroup$



                                    You should indeed not interpret the p-value as a probability that the null hypothesis is true.



                                    However, a higher p-value does relate to stronger support for the null hypothesis.




                                    Considering p-values as a random variable



                                    You could consider p-values as a transformation of your statistic. See for instance the secondary x-axis in the graph below in which the t-distribution is plotted with $nu=99$.



                                    secondary x-axis



                                    Here you see that a larger p-value corresponds to a smaller t-statistic (and also, for a two-sided test, there are two t-statistic associated with one p-value).



                                    Distribution of p-values $P(textp-value|mu_1-mu_2)$



                                    When we plot the distribution density of the p-values, parameterized by $mu_1-mu_2$, you see that higher p-values are less likely for $mu_1-mu_2 neq 0$.



                                    distribution of p-values



                                    # compute CDF for a given observed p-value and parameter ncp=mu_1-mu_2
                                    qp <- function(p,ncp)
                                    from_p_to_t <- qt(1-p/2,99) # transform from p-value to t-statistic
                                    1-pt(from_p_to_t,99,ncp=ncp) + pt(-from_p_to_t,99,ncp=ncp) # compute CDF for t-statistic (two-sided)

                                    qp <- Vectorize(qp)

                                    # plotting density function
                                    p <- seq(0,1,0.001)
                                    plot(-1,-1,
                                    xlim=c(0,1), ylim=c(0,9),
                                    xlab = "p-value", ylab = "probability density")

                                    # use difference between CDF to plot PDF
                                    lines(p[-1]-0.001/2,(qp(p,0)[-1]-qp(p,0)[-1001])/0.001,type="l")
                                    lines(p[-1]-0.001/2,(qp(p,1)[-1]-qp(p,1)[-1001])/0.001,type="l", lty=2)
                                    lines(p[-1]-0.001/2,(qp(p,2)[-1]-qp(p,2)[-1001])/0.001,type="l", lty=3)


                                    The bayes factor, the ratio of the likelihood for different hypotheses is larger for larger p-values. And you could consider higher p-values as stronger support. Depending on the alternative hypothesis this strong support is reached at different p-values. The more extreme the alternative hypothesis, or the larger the sample of the test, the smaller the p-value needs to be in order to be strong support.



                                    bayes-factor




                                    Illustration



                                    See below an example with simulations for two different situations. You sample $X sim N(mu_1,2)$ and $X sim N(mu_2,2)$ Let in one case




                                    • $mu_i sim N(i,1)$ such that $mu_2-mu_1 sim N(1,sqrt2)$

                                    the other case




                                    • $mu_i sim N(0,1)$ such that $mu_2-mu_1 sim
                                      N(0,sqrt2)$
                                      .

                                    simulation



                                    In the first case you can see that the probability for $mu_1-mu_2$ is most likely to be around 1, also for higher p-values. This is because the marginal probability $mu_1-mu_2 sim N(1,sqrt2)$ is already close to 1 to start with. So a high p-value will be support for the hypothesis $mu_1-mu_2$ but is is not strong enough.



                                    In the second case you can see that $mu_1-mu_2$ is indeed most likely to be around zero when the p-value is large. So, you could consider it as some sort of support for the null hypothesis.



                                    So in any of the cases a high p-value is support for the null hypothesis. But, it should not be considered as the probability that the hypothesis is true. This probability needs to be considered case by case. You can evaluate it when you know the joint distribution of the mean and the p-value (that is, you know something like a prior probability for the distribution of the mean).



                                    Sidenote: When you use the p-value in this way, to indicate support for the null hypothesis, then you are actually not using this value in the way that is was intended for. Then you may better just report the t-statistic and present something like a plot of a likelihood function (or bayes factor).






                                    share|cite|improve this answer











                                    $endgroup$





                                    You should indeed not interpret the p-value as a probability that the null hypothesis is true.



                                    However, a higher p-value does relate to stronger support for the null hypothesis.




                                    Considering p-values as a random variable



                                    You could consider p-values as a transformation of your statistic. See for instance the secondary x-axis in the graph below in which the t-distribution is plotted with $nu=99$.



                                    secondary x-axis



                                    Here you see that a larger p-value corresponds to a smaller t-statistic (and also, for a two-sided test, there are two t-statistic associated with one p-value).



                                    Distribution of p-values $P(textp-value|mu_1-mu_2)$



                                    When we plot the distribution density of the p-values, parameterized by $mu_1-mu_2$, you see that higher p-values are less likely for $mu_1-mu_2 neq 0$.



                                    distribution of p-values



                                    # compute CDF for a given observed p-value and parameter ncp=mu_1-mu_2
                                    qp <- function(p,ncp)
                                    from_p_to_t <- qt(1-p/2,99) # transform from p-value to t-statistic
                                    1-pt(from_p_to_t,99,ncp=ncp) + pt(-from_p_to_t,99,ncp=ncp) # compute CDF for t-statistic (two-sided)

                                    qp <- Vectorize(qp)

                                    # plotting density function
                                    p <- seq(0,1,0.001)
                                    plot(-1,-1,
                                    xlim=c(0,1), ylim=c(0,9),
                                    xlab = "p-value", ylab = "probability density")

                                    # use difference between CDF to plot PDF
                                    lines(p[-1]-0.001/2,(qp(p,0)[-1]-qp(p,0)[-1001])/0.001,type="l")
                                    lines(p[-1]-0.001/2,(qp(p,1)[-1]-qp(p,1)[-1001])/0.001,type="l", lty=2)
                                    lines(p[-1]-0.001/2,(qp(p,2)[-1]-qp(p,2)[-1001])/0.001,type="l", lty=3)


                                    The bayes factor, the ratio of the likelihood for different hypotheses is larger for larger p-values. And you could consider higher p-values as stronger support. Depending on the alternative hypothesis this strong support is reached at different p-values. The more extreme the alternative hypothesis, or the larger the sample of the test, the smaller the p-value needs to be in order to be strong support.



                                    bayes-factor




                                    Illustration



                                    See below an example with simulations for two different situations. You sample $X sim N(mu_1,2)$ and $X sim N(mu_2,2)$ Let in one case




                                    • $mu_i sim N(i,1)$ such that $mu_2-mu_1 sim N(1,sqrt2)$

                                    the other case




                                    • $mu_i sim N(0,1)$ such that $mu_2-mu_1 sim
                                      N(0,sqrt2)$
                                      .

                                    simulation



                                    In the first case you can see that the probability for $mu_1-mu_2$ is most likely to be around 1, also for higher p-values. This is because the marginal probability $mu_1-mu_2 sim N(1,sqrt2)$ is already close to 1 to start with. So a high p-value will be support for the hypothesis $mu_1-mu_2$ but is is not strong enough.



                                    In the second case you can see that $mu_1-mu_2$ is indeed most likely to be around zero when the p-value is large. So, you could consider it as some sort of support for the null hypothesis.



                                    So in any of the cases a high p-value is support for the null hypothesis. But, it should not be considered as the probability that the hypothesis is true. This probability needs to be considered case by case. You can evaluate it when you know the joint distribution of the mean and the p-value (that is, you know something like a prior probability for the distribution of the mean).



                                    Sidenote: When you use the p-value in this way, to indicate support for the null hypothesis, then you are actually not using this value in the way that is was intended for. Then you may better just report the t-statistic and present something like a plot of a likelihood function (or bayes factor).







                                    share|cite|improve this answer














                                    share|cite|improve this answer



                                    share|cite|improve this answer








                                    edited 13 hours ago

























                                    answered 14 hours ago









                                    Martijn WeteringsMartijn Weterings

                                    14.7k1964




                                    14.7k1964



























                                        draft saved

                                        draft discarded
















































                                        Thanks for contributing an answer to Cross Validated!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid


                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.

                                        Use MathJax to format equations. MathJax reference.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function ()
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstats.stackexchange.com%2fquestions%2f402138%2fwhy-is-my-p-value-correlated-to-difference-between-means-in-two-sample-tests%23new-answer', 'question_page');

                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        -effect-size, hypothesis-testing, p-value, statistical-significance

                                        Popular posts from this blog

                                        Mobil Contents History Mobil brands Former Mobil brands Lukoil transaction Mobil UK Mobil Australia Mobil New Zealand Mobil Greece Mobil in Japan Mobil in Canada Mobil Egypt See also References External links Navigation menuwww.mobil.com"Mobil Corporation"the original"Our Houston campus""Business & Finance: Socony-Vacuum Corp.""Popular Mechanics""Lubrite Technologies""Exxon Mobil campus 'clearly happening'""Toledo Blade - Google News Archive Search""The Lion and the Moose - How 2 Executives Pulled off the Biggest Merger Ever""ExxonMobil Press Release""Lubricants""Archived copy"the original"Mobil 1™ and Mobil Super™ motor oil and synthetic motor oil - Mobil™ Motor Oils""Mobil Delvac""Mobil Industrial website""The State of Competition in Gasoline Marketing: The Effects of Refiner Operations at Retail""Mobil Travel Guide to become Forbes Travel Guide""Hotel Rankings: Forbes Merges with Mobil"the original"Jamieson oil industry history""Mobil news""Caltex pumps for control""Watchdog blocks Caltex bid""Exxon Mobil sells service station network""Mobil Oil New Zealand Limited is New Zealand's oldest oil company, with predecessor companies having first established a presence in the country in 1896""ExxonMobil subsidiaries have a business history in New Zealand stretching back more than 120 years. We are involved in petroleum refining and distribution and the marketing of fuels, lubricants and chemical products""Archived copy"the original"Exxon Mobil to Sell Its Japanese Arm for $3.9 Billion""Gas station merger will end Esso and Mobil's long run in Japan""Esso moves to affiliate itself with PC Optimum, no longer Aeroplan, in loyalty point switch""Mobil brand of gas stations to launch in Canada after deal for 213 Loblaws-owned locations""Mobil Nears Completion of Rebranding 200 Loblaw Gas Stations""Learn about ExxonMobil's operations in Egypt""Petrol and Diesel Service Stations in Egypt - Mobil"Official websiteExxon Mobil corporate websiteMobil Industrial official websiteeeeeeeeDA04275022275790-40000 0001 0860 5061n82045453134887257134887257

                                        Frič See also Navigation menuinternal link

                                        Identify plant with long narrow paired leaves and reddish stems Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?What is this plant with long sharp leaves? Is it a weed?What is this 3ft high, stalky plant, with mid sized narrow leaves?What is this young shrub with opposite ovate, crenate leaves and reddish stems?What is this plant with large broad serrated leaves?Identify this upright branching weed with long leaves and reddish stemsPlease help me identify this bulbous plant with long, broad leaves and white flowersWhat is this small annual with narrow gray/green leaves and rust colored daisy-type flowers?What is this chilli plant?Does anyone know what type of chilli plant this is?Help identify this plant