R/tam_wle_print_general.R

Defines functions tam_wle_print_general

## File Name: tam_wle_print_general.R
## File Version: 0.06


#**********************************************************************
tam_wle_print_general <- function( ndim, nobs, CALL )
{
    #*** print output with general information
    cat("Object of class 'tam.wle'\nCall: ")
    print( CALL )
    if (ndim==1){
        D0 <- ""
    } else {
        D0 <- "s"
    }
    v1 <- paste0("\n  WLEs for ", nobs, " observations and ",
            ndim, " dimension", D0, "\n")
    cat(v1)
}

Try the TAM package in your browser

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

TAM documentation built on Aug. 29, 2022, 1:05 a.m.