p-value > .999 #247
Answered
by
bwiernik
Filippo-94
asked this question in
Q&A
p-value > .999
#247
-
if I run correlation(mtcars) there are there a lot of > .999 p-value, why? but if I run the result is 0.243 instead of > .999 |
Beta Was this translation helpful? Give feedback.
Answered by
bwiernik
Aug 3, 2022
Replies: 1 comment 1 reply
-
The reason for this is that a Holm p-value adjustment is applied by default. Set |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
bwiernik
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The reason for this is that a Holm p-value adjustment is applied by default. Set
p_adjust = "none"
to not adjust p values. Or, in general, I recommend ignoring the p values and focusing on the CIs instead.