Nothing
### Hazard and cumulative hazard functions for R built in
### distributions. Where possible, use more numerically stable
### formulae than d/(1-p) and -log(1-p)
##'
hgamma <- function(x, shape, rate=1, log=FALSE){
h <- dbase("gamma", log=log, x=x, shape=shape, rate=rate)
for (i in seq_along(h)) assign(names(h)[i], h[[i]])
ret[ind] <- dgamma(x, shape, rate) / pgamma(x, shape, rate, lower.tail=FALSE)
if (log) ret[ind] <- log(ret[ind])
ret
}
##'
Hgamma <- function(x, shape, rate=1, log=FALSE){
h <- dbase("gamma", log=log, x=x, shape=shape, rate=rate)
for (i in seq_along(h)) assign(names(h)[i], h[[i]])
ret[ind] <- - pgamma(x, shape, rate, lower.tail=FALSE, log.p=TRUE)
if (log) ret[ind] <- log(ret[ind])
ret
}
check.gamma <- function(shape, rate=1){
ret <- rep(TRUE, length(shape))
if (any(!is.na(shape) & shape<0)) {
warning("Negative shape parameter")
ret[!is.na(shape) & shape<0] <- FALSE
}
if (any(!is.na(rate) & rate<0)) {
warning("Negative rate parameter")
ret[!is.na(rate) & rate<0] <- FALSE
}
ret
}
mean_gamma <- function(shape, rate=1) {shape / rate}
var.gamma <- function(shape, rate=1) {shape / rate^2}
rmst_gamma = function(t, shape, rate=1, start=0){
rmst_generic(pgamma, t, start=start, shape=shape, rate=rate)
}
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.