exp_hazards | R Documentation |
Functions which return the hazard, cumulative hazard and inverse cumulative hazard at time t for an exponential distribution with parameter λ and true hazard ratio μ.
haz_exp(t, lambda) chaz_exp(t, lambda, mu = log(1)) inv_chaz_exp(t, lambda, mu = log(1))
t |
time of evaluation. |
lambda |
parameter of the exponential distribution. |
mu |
(optional) true excess hazard rate μ. |
The hazard function of an exponential distribution is given by:
h(λ) = λ
The cumulative hazard (with true hazard ratio μ) is given by:
H(λ, μ) = λ * t * exp(μ)
The inverse cumulative hazard (with true hazard ratio μ) by:
H^(-1)(λ, μ) = t/(λ exp(μ))
Value of specified function at time t.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.