R/print.F.test.cca.R

Defines functions `print.F.test.cca`

`print.F.test.cca` <- function(x, ...)
{
    cat("\n\tF Test for Canonical Correlations (Rao's F Approximation)\n\n")
    ctab <- cbind(x$corr, x$statistic, x$parameter, x$p.value)
    colnames(ctab) <- c("Corr","F","Num df","Den df","Pr(>F)")
    rownames(ctab) <- names(x$corr)
    printCoefmat(ctab)
    cat("\n")
}

Try the yacca package in your browser

Any scripts or data that you put into this service are public.

yacca documentation built on March 18, 2022, 7:27 p.m.