R/distr-theo-ecf.R

Defines functions ecbeta ecunif

Documented in ecbeta ecunif

#new exposure curve function for some distributions
#limited expected value is implemented in actuar

ecunif <- function(x, min = 0, max =1)
{
  levunif(x, min = min, max = max) / munif(1, min = min, max = max)
}

ecbeta <- function(x, shape1, shape2)
{
  levbeta(x, shape1 = shape1, shape2 = shape2) / mbeta(1, shape1 = shape1, shape2 = shape2)
}

Try the mbbefd package in your browser

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

mbbefd documentation built on Aug. 29, 2023, 1:06 a.m.