Skip to content
Prev 1403 / 63424 Next

Are post-hoc tests being developed for R?

Thomas Lumley <thomas@biostat.washington.edu> writes:
Been a while since you wrote that? Surely, you mean:
function (p, method = c("hochberg", "holm", "bonferroni"), ...) 
{
            how <- match.arg(method)
            FUN <- get(paste("p.adjust", how, sep = "."))
            FUN(p, ...)
}