Exponential survival distribution
exp_surv_dist.Rd
Exponential survival distribution
Arguments
- time_var
character. Name of time variable column in model matrix
- cens_var
character. Name of the censorship variable flag in model matrix
- baseline_prior
Prior
. Object of classPrior
specifying prior distribution for the baseline outcome. SeeDetails
for more information.- weight_var
character. Optional name of variable in model matrix for weighting the log likelihood.
Value
Object of class ExponentialSurvDist
.
Details
Baseline Prior
The baseline_prior
argument specifies the prior distribution for the
baseline log hazard rate. The interpretation of the baseline_prior
differs
slightly between methods selected in borrowing_details()
:
'BDB': the
baseline_prior
for Bayesian Dynamic Borrowing refers to the log hazard rate of the external control arm.'Full borrowing' or 'No borrowing': the
baseline_prior
for these borrowing methods refers to the log hazard rate for the internal control arm.
See also
Other outcome models:
logistic_bin_outcome()
,
weib_ph_surv_dist()
Examples
es <- exp_surv_dist(
time_var = "time",
cens_var = "cens",
baseline_prior = normal_prior(0, 1000)
)