Nothing
### actuar: Actuarial Functions and Heavy Tailed Distributions
###
### Definition of the {d,p,q,r,m,lev}genbeta functions to compute
### characteristics of the Generalized Beta distribution. The version
### used in these functions has cumulative distribution function
###
### Pr[X <= x] = Pr[Y <= (x/scale)^shape3], 0 < x < scale,
###
### where Y has a Beta distribution with parameters shape1 and shape2.
###
### See Appendix A of Klugman, Panjer & Willmot, Loss Models, Wiley.
###
### AUTHOR: Vincent Goulet <vincent.goulet@act.ulaval.ca>
dgenbeta <-
function (x, shape1, shape2, shape3, rate = 1, scale = 1/rate,
log = FALSE)
.External(C_actuar_do_dpq, "dgenbeta", x, shape1, shape2, shape3, scale, log)
pgenbeta <-
function (q, shape1, shape2, shape3, rate = 1, scale = 1/rate,
lower.tail = TRUE, log.p = FALSE)
.External(C_actuar_do_dpq, "pgenbeta", q, shape1, shape2, shape3, scale,
lower.tail, log.p)
qgenbeta <-
function (p, shape1, shape2, shape3, rate = 1, scale = 1/rate,
lower.tail = TRUE, log.p = FALSE)
.External(C_actuar_do_dpq, "qgenbeta", p, shape1, shape2, shape3, scale,
lower.tail, log.p)
rgenbeta <-
function (n, shape1, shape2, shape3, rate = 1, scale = 1/rate)
.External(C_actuar_do_random, "rgenbeta", n, shape1, shape2, shape3, scale)
mgenbeta <-
function (order, shape1, shape2, shape3, rate = 1, scale = 1/rate)
.External(C_actuar_do_dpq, "mgenbeta", order, shape1, shape2, shape3, scale, FALSE)
levgenbeta <-
function (limit, shape1, shape2, shape3, rate = 1, scale = 1/rate,
order = 1)
.External(C_actuar_do_dpq, "levgenbeta", limit, shape1, shape2, shape3, scale,
order, FALSE)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.