hazard_fun {EstimationTools} | R Documentation |
Hazard functions in maxlogL
framework
Description
This function takes the name of a probability density/mass function as an argument and creates a hazard function.
Usage
hazard_fun(dist, support)
Arguments
dist |
a length-one character vector with the name of density/mass function of interest. |
support |
a list with the following entries:
|
Value
A function with the folling input arguments:
x |
vector of (non-negative) quantiles. |
... |
Arguments of the probability density/mass function. |
Author(s)
Jaime Mosquera GutiƩrrez, jmosquerag@unal.edu.co
See Also
Other maxlogL:
maxlogLreg()
,
maxlogL()
Examples
library(EstimationTools)
#--------------------------------------------------------------------------------
# Example 1: Hazard function of Weibull distribution.
hweibull1 <- hazard_fun('dweibull', list(interval=c(0, Inf), type='continuous'))
hweibull2 <- function(x){
ans <- dweibull(x, shape = 2, scale = 1)/
pweibull(x, shape = 2, scale = 1, lower.tail = FALSE)
ans
}
hweibull1(0.2, shape = 2, scale = 1)
hweibull2(0.2)
#--------------------------------------------------------------------------------
[Package EstimationTools version 4.0.0 Index]