Skip to content
Prev 4836 / 20628 Next

P value value for a large number of degree of freedom in lmer

On Tue, Nov 23, 2010 at 4:09 PM, Jonathan Baron <baron at psych.upenn.edu> wrote:
I would not take it that way.  I agree there is a difference between
some arbitrary null of no difference and a well designed control, but
no matter what case, the null is a specific hypothesis.  Given a
continuous distribution, if you the probability of any constant
occurring to an infinite decimal place is infinitely small.  With only
100,000 observations:
[1] 0.001747051

Your career as an experimental psychologist is not a delusion, null
hypothesis statistical testing is---even with a perfect control, we
set up an unrealistic hypothesis.  Now if we could set up the null as
an interval....
I agree that this is typically a bigger problem for correlational
studies, but if it became practical to run well-controlled experiments
on millions of participants, I suspect p-values would be disregarded
awfully quickly.  Even then, the study was not pointless or a
delusion, that kind of precision lets you confidently talk about the
actual effect your treatment had compared to your well-designed
control, and would give any applied person or practitioner a great
guide what to expect if they implemented it in the field.

x <- rnorm(10^6, mean = 0)
y <- rnorm(10^6, mean = .01)
t.test(x, y, var.equal = TRUE)

Best regards,

Josh (fan of experiments, correlational studies, & psychology...not so
much of NHST, but you use what you have)