pcens_cdf {primarycensored} | R Documentation |
Compute primary event censored CDF
Description
This function dispatches to either analytical solutions (if available) or
numerical integration via the default method. To see which combinations have
analytical solutions implemented, use methods(pcens_cdf)
. For example,
pcens_cdf.gamma_unif
indicates an analytical solution exists for gamma
delay with uniform primary event distributions.
Usage
pcens_cdf(object, q, pwindow, use_numeric = FALSE)
Arguments
object |
A |
q |
Vector of quantiles |
pwindow |
Primary event window |
use_numeric |
Logical, if TRUE forces use of numeric integration even for distributions with analytical solutions. This is primarily useful for testing purposes or for settings where the analytical solution breaks down. |
Value
Vector of computed primary event censored CDFs
See Also
Low level primary event censored distribution objects and methods
new_pcens()
,
pcens_cdf.default()
,
pcens_cdf.pcens_pgamma_dunif()
,
pcens_cdf.pcens_plnorm_dunif()
,
pcens_cdf.pcens_pweibull_dunif()
,
pcens_quantile()
,
pcens_quantile.default()