interpret_p | R Documentation |
Interpret p-Values
interpret_p(p, rules = "default")
p |
Value or vector of p-values. |
rules |
Can be |
Default
p >= 0.05 - Not significant
p < 0.05 - Significant
Benjamin et al. (2018) ("rss"
)
p >= 0.05 - Not significant
0.005 <= p < 0.05 - Suggestive
p < 0.005 - Significant
Benjamin, D. J., Berger, J. O., Johannesson, M., Nosek, B. A., Wagenmakers, E. J., Berk, R., ... & Cesarini, D. (2018). Redefine statistical significance. Nature Human Behaviour, 2(1), 6-10.
interpret_p(c(.5, .02, 0.001))
interpret_p(c(.5, .02, 0.001), rules = "rss")
stars <- rules(c(0.001, 0.01, 0.05, 0.1), c("***", "**", "*", "+", ""),
right = FALSE, name = "stars"
)
interpret_p(c(.5, .02, 0.001), rules = stars)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.