R/print.swgee.R

Defines functions print.swgee

Documented in print.swgee

print.swgee <-
function(x, ...)
{  
    cat("Formula: \n")
    print(x$formula)
    cat("\n")
    cat("SIMEX variables: \n")
    print(x$SIMEXvariable)
    cat("\n")
    cat("Number of simulations: \n")
    print(x$B)
    cat("\n")
    cat("This is response process coefficients: \n")
    print(x$beta)
    cat("\n")
    cat("This is missing process coefficients:\n")
    print(x$alpha)
}

Try the swgee package in your browser

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

swgee documentation built on May 2, 2019, 10:25 a.m.