R/summary.KLopt.lnorm.R

Defines functions summary.KLopt.lnorm

Documented in summary.KLopt.lnorm

summary.KLopt.lnorm <- function(object, ...)
{
    res <- object
    cat("\n###############################################################################\n")
    cat("Call:\n\n")
    print(res$call)
    cat("\n###############################################################################\n")
    cat("Models:\n")
    print(res$eta)
    cat("Fixed parameters:\n")
    print(res$theta.fix)
    cat("\n###############################################################################\n")
    cat("Design:\n")
    print(rbind(x = res$x, w = res$w))
    cat("\n###############################################################################\n")
    cat("Efficiency by iteration:\n")
    print(res$efficiency)
    cat("\n###############################################################################\n")
    cat("Time:\n")
    print(res$time)
    cat("\n###############################################################################\n")
}

Try the rodd package in your browser

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

rodd documentation built on May 2, 2019, 8:16 a.m.