pevent | R Documentation |
Obtains the probability of having an event at given analysis times.
pevent(
time = NA_real_,
piecewiseSurvivalTime = 0L,
lambda = NA_real_,
gamma = 0L
)
time |
A vector of analysis times at which to calculate the probability of having an event. |
piecewiseSurvivalTime |
A vector that specifies the starting time of
piecewise exponential survival time intervals. Must start with 0, e.g.,
|
lambda |
A vector of hazard rates for the event. One for each analysis time interval. |
gamma |
The hazard rate for exponential dropout, or a vector of hazard rates for piecewise exponential dropout. |
A vector of probabilities of having an event at the specified analysis times after enrollment for a patient in a treatment group with specified piecewise exponential survival and dropout distributions.
Kaifeng Lu, kaifenglu@gmail.com
# Piecewise exponential survival with hazard 0.0533 in the first 6
# months, and hazard 0.0309 thereafter, and 5% dropout by the end of
# 1 year.
pevent(time = c(3, 9), piecewiseSurvivalTime = c(0, 6),
lambda = c(0.0533, 0.0309), gamma = -log(1-0.05)/12)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.