R/print.meanmat.hat.R

Defines functions print.meanmat.hat

Documented in print.meanmat.hat

#' @export
print.meanmat.hat <- function(x, ...) {
    cat("ESTIMATION OF THE MEAN MATRIX", "\n")
    cat("Sample size      =", x$N, "\n")
    cat("Row variables    =", x$n.rows, "\n")
    cat("Column variables =", x$n.cols, "\n")
    cat("\nEstimated mean matrix [1:5, 1:5] =\n")
    print(round(x$estmeanmat[1:min(5, x$n.rows),  1:min(5, x$n.cols)], 4))
}

Try the HDTD package in your browser

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

HDTD documentation built on Nov. 8, 2020, 8:25 p.m.