ptpwexp {lrstat} | R Documentation |
Distribution function of truncated piecewise exponential distribution
Description
Obtains the probability of a truncated piecewise exponential distribution.
Usage
ptpwexp(
q,
piecewiseSurvivalTime = 0,
lambda = 0.0578,
lowerBound = 0,
lower.tail = TRUE,
log.p = FALSE
)
Arguments
q |
The vector of quantiles. |
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. |
lowerBound |
The left truncation time point for the survival time. Defaults to 0 for no truncation. |
lower.tail |
Logical; if TRUE (default), probabilities are P(X <= x), otherwise, P(X > x). |
log.p |
Logical; if TRUE, probabilities p are given as log(p). |
Value
The probability p such that P(X > q | X > lowerBound) = 1 - p.
Author(s)
Kaifeng Lu, kaifenglu@gmail.com
Examples
ptpwexp(q = c(8, 18), piecewiseSurvivalTime = c(0, 6, 9, 15),
lambda = c(0.025, 0.04, 0.015, 0.007))
[Package lrstat version 0.2.9 Index]