R/print.exptailecdf.R

Defines functions print.exptailecdf

Documented in print.exptailecdf

print.exptailecdf <- function(x, ...) {

  cat('Exponential-tail empirical CDF:\n')
  cat('Left tail (<=', x$joint[1])
  cat('): lambda =', x$lambda[1])

  cat('\nRight tail (>=', x$joint[2])
  cat('): lambda =', x$lambda[2])
  cat('\nIn-between: use the ')
  print(x$ecdf)
  invisible(x)
}

Try the spc4sts package in your browser

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

spc4sts documentation built on May 24, 2022, 5:07 p.m.