hesim
hesim
is an R package for health-economic simulation modeling that is naturally integrated with statistical modeling and provides support for decision analysis.
As shown in the table below, N-state partitioned survival models (PSMs) and individual-level continuous time state transition models (iCTSTMs) are currently supported. The PSM is a cohort-level model that simulates representative cohorts of patients with similar characteristics while the iCTSTM simulates individual patients probabilistically using random number generation. The models are implemented as R6 classes and have methods for simulating disease progression, costs, and QALYs. We expect to add cohort-level state transition models in the near future.
Economic model | R6 class |
---|---|
N-state partitioned survival model (PSM) | Psm |
Individual-level continuous time state transition model (iCTSTM) | IndivCtstm |
An economic model is constructed by combining statistical models for disease progression, costs, and utilities. As shown in the figure, a typical analysis proceeds in a 3-step process as follows:
The entire analysis is inherently Bayesian, as uncertainty in the parameters from the statistical models is propagated throughout the economic model and decision analysis with probabilistic sensitivity analysis (PSA). Furthermore, since the statistical and economic models are integrated, patient heterogeneity can be easily introduced with patient level covariates.
Before beginning an analysis, it is necessary to define the treatment strategies of interest, the target population, and the model structure. This can be done in hesim
by creating a hesim_data
object with the function hesim_data()
. Let’s consider an example where we use an iCTSTM to evaluate two competing treatment strategies. We will consider a model with three health states (healthy, sick, and dead) with four transitions (healthy -> sick, sick -> healthy, healthy -> dead, and sick -> dead). Since we are using an individual-level model, we must simulate a target population that is sufficiently large so that uncertainty reflects uncertainty in the model parameters, rather than variability across simulated individuals.
library("hesim")
library("data.table")
strategies <- data.table(strategy_id = c(1, 2))
n_patients <- 1000
patients <- data.table(patient_id = 1:n_patients,
age = rnorm(n_patients, mean = 45, sd = 7),
female = rbinom(n_patients, size = 1, prob = .51))
states <- data.table(state_id = c(1, 2),
state_name = c("Healthy", "Sick")) # Non-death health states
tmat <- rbind(c(NA, 1, 2),
c(3, NA, 4),
c(NA, NA, NA))
colnames(tmat) <- rownames(tmat) <- c("Healthy", "Sick", "Dead")
transitions <- create_trans_dt(tmat)
transitions[, trans := factor(transition_id)]
hesim_dat <- hesim_data(strategies = strategies,
patients = patients,
states = states,
transitions = transitions)
print(hesim_dat)
## $strategies
## strategy_id
## 1: 1
## 2: 2
##
## $patients
## patient_id age female
## 1: 1 39.24173 0
## 2: 2 41.72205 1
## 3: 3 46.75134 0
## 4: 4 38.41198 1
## 5: 5 44.70204 0
## ---
## 996: 996 52.78174 0
## 997: 997 52.45926 0
## 998: 998 44.04488 1
## 999: 999 46.42657 0
## 1000: 1000 39.03964 1
##
## $states
## state_id state_name
## 1: 1 Healthy
## 2: 2 Sick
##
## $transitions
## transition_id from to from_name to_name trans
## 1: 1 1 2 Healthy Sick 1
## 2: 2 1 3 Healthy Dead 2
## 3: 3 2 1 Sick Healthy 3
## 4: 4 2 3 Sick Dead 4
##
## attr(,"class")
## [1] "hesim_data"
As shown in the table below, the statistical model used to parameterize the disease model component of an economic model varies by the type of economic model. For example, a set of N-1 independent survival models are used to parameterize an N-state partitioned survival model, while multi-state models are used to parameterize an iCTSTM.
Economic model (R6 class) | Statistical model | Parameter object | Model fit object |
---|---|---|---|
Psm | Independent survival models | params_surv_list | hesim::flexsurvreg_list |
IndivCtstm | Multi-state model | params_surv or params_surv_list | flexsurv::flexsurvreg or hesim::flexsurvreg_list |
The easiest way to parameterize a disease model is by fitting a statistical model using R
. For example, survival models for PSMs and multi-state models for iCTSTMs can be fit using flexsurvreg()
. A multi-state model can either be fit as a single model with a joint likelihood (a flexsurvreg
object) or as a list of transition-specific models (a flexsurvreg_list
object) (see Section 6 from the flexsurv vignette for details). Likewise, a list of survival models for a PSM are stored as a flexsurvreg_list
object.
In other cases, the disease models will not be fit directly with R (for instance, when performing a network meta-analysis). In these cases, the estimates of a disease model can be directly stored in objects prefixed by “params_”. When a single survival model or a multi-state model with a joint likelihood is fit, parameters are stored in params_surv
objects; when multiple independent survival or multi-state models with transition specific fits are used, parameters are stored in params_surv_list
objects.
We will illustrate using the first approach, by estimating a multi-state model with a joint likelihood using flexsurvreg()
.
library("flexsurv")
mstate_data <- data.table(ctstm3_exdata$transitions)
mstate_data[, trans := factor(trans)]
fit_wei <- flexsurv::flexsurvreg(Surv(years, status) ~ trans +
factor(strategy_id):trans +
age:trans +
female: trans +
shape(trans),
data = mstate_data,
dist = "weibull")
hesim
currently supports two types of models for modeling costs and utilities: mean (i.e., intercept-only) models and linear models.
Statistical model | Parameter object | Model fit object |
---|---|---|
Mean model | params_mean | stateval_tbl |
Linear model | params_lm | stats::lm |
Linear models can be fit using lm()
. Mean models are most easily constructed from a stateval_tbl
object, which is a special object used to assign values to health states. The table allows users to specify mean values that can vary across health states, treatment strategies, patients, and/or time intervals. State values can be specified either as moments (i.e., mean and standard error) or parameters (e.g., shape and scale of gamma distribution) of a probability distribution, or by pre-simulating values from a suitable probability distribution. Here we will use stateval_tbl
objects for utility and two cost categories (drug and medical).
# Utility
utility_tbl <- stateval_tbl(data.table(state_id = states$state_id,
mean = ctstm3_exdata$utility$mean,
se = ctstm3_exdata$utility$se),
dist = "beta",
hesim_data = hesim_dat)
# Costs
drugcost_tbl <- stateval_tbl(data.table(strategy_id = strategies$strategy_id,
est = ctstm3_exdata$costs$drugs$costs),
dist = "fixed",
hesim_data = hesim_dat)
medcost_tbl <- stateval_tbl(data.table(state_id = states$state_id,
mean = ctstm3_exdata$costs$medical$mean,
se = ctstm3_exdata$costs$medical$se),
dist = "gamma",
hesim_data = hesim_dat)
An economic model consists of a disease model, a utility model, and a set of cost models for each cost category. The utility and cost models are always StateVals
objects, whereas the disease models vary by economic model. In a PSM, the disease model is a PsmCurves
object used to simulate survival curves. The disease model in an iCTSTM simulated health states transitions and is a IndivCtstmTrans
object.
Economic model | Disease model | Utility model | Cost model(s) |
---|---|---|---|
Psm | PsmCurves | StateVals | StateVals |
IndivCtstm | IndivCtstmTrans | StateVals | StateVals |
Since economic models in hesim
are inherently Bayesian, we must specify the number of parameter samples we will use for the PSA before constructing the model.
n_samples <- 1000
Models are constructed as a function of parameters (or model fits) and in regression models, input data. The input data must be objects of class expanded_hesim_data
, which are data tables containing the covariates for the statistical model. In our multi-state model, each row is a unique treatment strategy, patient, and health-state transition. The ID variables (strategy_id
, patient_id
, and transition_id
) are stored as attributes of the dataset.
An “expanded_hesim_data” object can be created directly or by expanding an object of class “hesim_data” using expand.hesim_data()
. Here, we will use the latter approach,
transmod_data <- expand(hesim_dat,
by = c("strategies", "patients", "transitions"))
head(transmod_data)
## strategy_id patient_id transition_id age female from to from_name
## 1: 1 1 1 39.24173 0 1 2 Healthy
## 2: 1 1 2 39.24173 0 1 3 Healthy
## 3: 1 1 3 39.24173 0 2 1 Sick
## 4: 1 1 4 39.24173 0 2 3 Sick
## 5: 1 2 1 41.72205 1 1 2 Healthy
## 6: 1 2 2 41.72205 1 1 3 Healthy
## to_name trans
## 1: Sick 1
## 2: Dead 2
## 3: Healthy 3
## 4: Dead 4
## 5: Sick 1
## 6: Dead 2
attr(transmod_data, "id_vars")
## [1] "strategy_id" "patient_id" "transition_id"
We can now construct the health state transition model, which creates an IndivCtstmTrans
object that can be used to simulate health state transitions.
transmod <- create_IndivCtstmTrans(fit_wei, transmod_data,
trans_mat = tmat, n = n_samples)
class(transmod)
## [1] "IndivCtstmTrans" "CtstmTrans" "R6"
Since we did not use a regression model for costs or utilities, we do not need to specific input data. Instead, we can construct the cost and utility models directly from the stateval_tbl
objects.
# Utility
utilitymod <- create_StateVals(utility_tbl, n = n_samples)
# Costs
drugcostmod <- create_StateVals(drugcost_tbl, n = n_samples)
medcostmod <- create_StateVals(medcost_tbl, n = n_samples)
costmods <- list(drugs = drugcostmod,
medical = medcostmod)
Once the disease, utility, and cost model have been constructed, we combine them to create the full economic model.
ictstm <- IndivCtstm$new(trans_model = transmod,
utility_model = utilitymod,
cost_models = costmods)
Each economic model contains methods (i.e., functions) for simulating disease progression, costs, and QALYs. These methods are summarized in the table below.
Economic model (R6 class) | Disease progression | QALYs | Costs |
---|---|---|---|
Psm | $sim_survival() and $sim_stateprobs() | $sim_qalys() | $sim_costs() |
IndivCtstm | $sim_disease() and $sim_stateprobs() | $sim_qalys() | $sim_costs() |
More specifically, the methods for each economic model can be summarized as follows:
$sim_survival()
simulates survival curves and $sim_stateprobs()
computed health state probabilities as a function of time based on those survival curves. $sim_costs()
and $sim_qalys()
compute simulated costs and QALYs based on the values assigned to states from the cost and utility models and the expected time spent in each state.$sim_disease()
uses random number generation to simulate a disease trajectory and $sim_stateprobs
summarize that trajectory by computing the probability patients in the target population are in each health state as a function of time. $sim_costs()
and $sim_qalys()
compute simulated costs and QALYs for each simulated patient based on the times at which they enter health states.We illustrate with the iCTSTM. First we simulate disease progression for each patient.
ictstm$sim_disease()
head(ictstm$disprog_)
## sample strategy_id patient_id from to final time_start time_stop
## 1: 1 1 1 1 2 0 0.000000 3.561662
## 2: 1 1 1 2 1 0 3.561662 5.448704
## 3: 1 1 1 1 2 0 5.448704 17.776411
## 4: 1 1 1 2 1 0 17.776411 17.823163
## 5: 1 1 1 1 2 0 17.823163 21.803377
## 6: 1 1 1 2 1 0 21.803377 22.866568
The disease trajectory can be summarized with $sim_stateprobs()
.
ictstm$sim_stateprobs(t = c(0:10))
head(ictstm$stateprobs_)
## sample strategy_id state_id t prob
## 1: 1 1 1 0 1.000
## 2: 1 1 1 1 0.867
## 3: 1 1 1 2 0.778
## 4: 1 1 1 3 0.718
## 5: 1 1 1 4 0.674
## 6: 1 1 1 5 0.613
We can then compute costs and QALYs (using a discount rate of 3 percent).
# QALYs
ictstm$sim_qalys(dr = .03)
head(ictstm$qalys_)
## sample strategy_id state_id dr qalys lys
## 1: 1 1 1 0.03 8.653024 10.350427
## 2: 1 1 2 0.03 1.855214 2.075266
## 3: 1 2 1 0.03 8.756579 10.474295
## 4: 1 2 2 0.03 1.028786 1.150814
## 5: 2 1 1 0.03 3.582032 10.121771
## 6: 2 1 2 0.03 2.200406 2.200991
# Costs
ictstm$sim_costs(dr = .03)
head(ictstm$costs_)
## sample strategy_id state_id dr category costs
## 1: 1 1 1 0.03 drugs 51752.13
## 2: 1 1 2 0.03 drugs 10376.33
## 3: 1 2 1 0.03 drugs 104742.95
## 4: 1 2 2 0.03 drugs 11508.14
## 5: 2 1 1 0.03 drugs 50608.86
## 6: 2 1 2 0.03 drugs 11004.96
Once output has been simulated with an economic model, a decision analysis can be performed. Cost-effectiveness analyses can be performed using other R packages such as BCEA or directly with hesim
as described in more detail here. hesim
does not currently provide support for MCDA.
To perform a CEA, simulated costs and QALYs can be summarized to create a ce
object, which contains mean costs and QALYs for each sample from the PSA by treatment strategy.
ce <- ictstm$summarize()
print(ce)
## $costs
## category dr sample strategy_id costs
## 1: drugs 0.03 1 1 62128.46
## 2: drugs 0.03 1 2 116251.09
## 3: drugs 0.03 2 1 61613.81
## 4: drugs 0.03 2 2 108663.22
## 5: drugs 0.03 3 1 41809.06
## ---
## 5996: total 0.03 998 2 130330.21
## 5997: total 0.03 999 1 59106.74
## 5998: total 0.03 999 2 109303.51
## 5999: total 0.03 1000 1 64228.19
## 6000: total 0.03 1000 2 117549.79
##
## $qalys
## dr sample strategy_id qalys
## 1: 0.03 1 1 10.508238
## 2: 0.03 1 2 9.785366
## 3: 0.03 2 1 5.782438
## 4: 0.03 2 2 4.705317
## 5: 0.03 3 1 6.413132
## ---
## 1996: 0.03 998 2 8.368596
## 1997: 0.03 999 1 5.853427
## 1998: 0.03 999 2 5.950172
## 1999: 0.03 1000 1 6.007067
## 2000: 0.03 1000 2 6.115525
##
## attr(,"class")
## [1] "ce"
The functions icea()
and icea_pw
, which perform individualized cost-effectiveness analysis and incremental individualized cost-effectiveness analysis, respectively, can be used.
icea <- icea(ce, dr_qalys = .03, dr_costs = .03)
icea_pw <- icea_pw(ce, dr_qalys = .03, dr_costs = .03, comparator = 1)
For instance, we might want to plot a cost-effectiveness acceptability curve (CEAC) displaying the probability that treatment strategy 2 is more cost-effective than treatment strategy 1 at a given willingness to pay for a QALY.
library("ggplot2")
ggplot2::ggplot(icea_pw$ceac, aes(x = k, y = prob, col = factor(strategy_id))) +
geom_line() + xlab("Willingness to pay") +
ylab("Probability most cost-effective") +
scale_x_continuous(breaks = seq(0, 200000, 100000), label = scales::dollar) +
theme(legend.position = "bottom") + scale_colour_discrete(name = "Strategy") +
theme_minimal()