R/print.CNVassoc.R

Defines functions print.CNVassoc

Documented in print.CNVassoc

print.CNVassoc<-
function (x, digits = 6, ...)
{
    cat("\nCall: ", deparse(x$call), "\n\n")
    cat("Coefficients")
    cat(":\n")
    print.default(format(x$coefficients, digits = digits), print.gap = 2,
        quote = FALSE)
    cat("\nNumber of individuals:", length(x$y), "\n")
    cat("Number of estimated parameters:", logLik(x)[2], "\n")
    cat("Deviance:", format(signif(-2 * logLik(x)[1], digits)), "\n")
}

Try the CNVassoc package in your browser

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

CNVassoc documentation built on May 30, 2017, 12:50 a.m.