mix: Mix Two or More Survival Distributions

View source: R/survival_operations.R

mixR Documentation

Mix Two or More Survival Distributions

Description

Mix a set of survival distributions using the specified weights.

Usage

mix(..., weights = 1)

mix_(dots, weights = 1)

pool(...)

pool_(...)

Arguments

...

Survival distributions to be used in the projection.

weights

A vector of weights used in pooling.

dots

Used to work around non-standard evaluation.

Value

A surv_pooled object.

Examples


dist1 <- define_survival(distribution = "exp", rate = .5)
dist2 <- define_survival(distribution = "gompertz", rate = .5, shape = 1)
pooled_dist <- mix(dist1, dist2, weights = c(0.25, 0.75))


heemod documentation built on July 26, 2023, 5:45 p.m.