R/print.eaemg.R

Defines functions print.eaemg

Documented in print.eaemg

print.eaemg <- function(x, ...) {
    object <- x
    cat("Envelope averaged EMG")
    if (object$empirical) {
        cat("\n", round(object$level * 100, 2), "% empirical prediction intervals")
    } else {
        cat("\n", round(object$level * 100, 2), "% empirical prediction intervals")
    }
    cat("\n", dim(object$intervals)[1], "group points\n")
    cat("\nPrediction intervals:\n")
    print(object$intervals)
}

Try the biosignalEMG package in your browser

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

biosignalEMG documentation built on May 2, 2019, 12:07 p.m.