R/summary.eBsc.R

Defines functions summary.eBsc

Documented in summary.eBsc

summary.eBsc <-
function(object,...)
{
    q.hat = object$q.hat
    lambda.hat = object$lambda.hat
    res = object$res
    etq.hat = object$etq.hat    

    if(length(etq.hat)==1){
        cat("Computations performed according to the provided q = ",q.hat,sep="","\n")
        cat("lambda.hat = ",toString(lambda.hat),sep="","\n")
    }else{
        cat("etq.hat = ",etq.hat,sep="","\n")
        cat("q.hat = ",q.hat,sep="","\n")
        cat("lambda.hat = ",toString(lambda.hat),sep="","\n")
    }
    
}

Try the eBsc package in your browser

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

eBsc documentation built on May 31, 2023, 5:40 p.m.