Adjustment for Multiple Comparison Tests with R: Resources on the web
[This article was first published on Statistic on aiR, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
1. Bonferroni correctionWant to share your content on R-bloggers? click here if you have a blog, or here if you don't.
p.adjust(p, method = “bonferroni”)
Read: http://en.wikipedia.org/wiki/
2. Sidak (Dunn-Sidak) correction
Read: http://en.wikipedia.org/wiki/
3. Holm-Bonferroni correction
p.adjust(p, method = “holm”)
Read: http://en.wikipedia.org/wiki/
4. Hochberg correction
p.adjust(p, method = “hochberg”)
Read: http://stats.stackexchange.com/questions/
Read: http://onbiostatistics.blogspot.it/
5. Hommel correction
p.adjust(p, method = “hommel”)
Read: http://stats.stackexchange.com/questions
6. Benjamini-Hochberg correction
p.adjust(p, method = “BH”)
or equivalently
p.adjust(p, method = “fdr”)
Read: http://nebc.nerc.ac.uk/courses/
Read: http://en.wikipedia.org/wiki/
7. Benjamini–Yekutieli (Benjamini–Hochberg–Yekutieli) correction
p.adjust(p, method = “BY”)
Read: http://en.wikipedia.org/wiki/
To leave a comment for the author, please follow the link and comment on their blog: Statistic on aiR.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.