| Literature DB >> 34388954 |
Anna Heath1,2,3, Mark Strong4, David Glynn5, Natalia Kunst6, Nicky J Welton7, Jeremy D Goldhaber-Fiebert8.
Abstract
The expected value of sample information (EVSI) can be used to prioritize avenues for future research and design studies that support medical decision making and offer value for money spent. EVSI is calculated based on 3 key elements. Two of these, a probabilistic model-based economic evaluation and updating model uncertainty based on simulated data, have been frequently discussed in the literature. By contrast, the third element, simulating data from the proposed studies, has received little attention. This tutorial contributes to bridging this gap by providing a step-by-step guide to simulating study data for EVSI calculations. We discuss a general-purpose algorithm for simulating data and demonstrate its use to simulate 3 different outcome types. We then discuss how to induce correlations in the generated data, how to adjust for common issues in study implementation such as missingness and censoring, and how individual patient data from previous studies can be leveraged to undertake EVSI calculations. For all examples, we provide comprehensive code written in the R language and, where possible, Excel spreadsheets in the supplementary materials. This tutorial facilitates practical EVSI calculations and allows EVSI to be used to prioritize research and design studies.Entities:
Keywords: R tutorial; expected value of sample information; research design methods; simulation methods; value of information
Mesh:
Year: 2021 PMID: 34388954 PMCID: PMC8793320 DOI: 10.1177/0272989X211026292
Source DB: PubMed Journal: Med Decis Making ISSN: 0272-989X Impact factor: 2.749
Representation of a Probabilistic Analysis (PA) Sample with Samples for a Set of Parameters and Decision Options
| Probabilistic Analysis Sample | Simulated Datasets | |||||||
|---|---|---|---|---|---|---|---|---|
| Parameters | Net Benefits | |||||||
|
| … |
|
| … |
|
| … |
|
|
| … |
|
| … |
|
| … |
|
| ⋮ | ⋱ | ⋮ | ⋮ | ⋱ | ⋮ | ⋮ | ⋱ | ⋮ |
|
| … |
|
| … |
|
| … |
|
The bracketed superscript indexes the parameter samples, corresponding net benefits, and simulated datasets.
Representation of the Bootstrap Estimation Method for the Parameter Based on an Initial Sample of Size
| Simulation |
|
|
| … |
|
|
|---|---|---|---|---|---|---|
| 1 |
|
|
| … |
|
|
| 2 |
|
|
| … |
|
|
| ⋮ | ⋮ | ⋮ | ⋮ | ⋱ | ⋮ | ⋮ |
|
|
|
|
| … |
|
|
| S <- 1000 # Number of simulated datasets |
| M <- 100 |
| S <- 1000 |
| M <- 100 |
| S <- 1000; theta_3 <- runif(S, 0.2, 0.3) # Hypothetical # distribution for theta_3 |
| S <- 1000 |
| S <- 1000;theta_6 <- rbeta(S, 70, 15) # Hypothetical # distribution for theta_6 |
| S <- 1000 |
| library(SimJoint) # Package containing function to reorder # dataS <- 1000 |
| library(MASS) # Package to simulate from multivariate normal # distributionS <- 1000 |
| library(boot) # Package for logit and inv.logit |
| # Calculate s-th baseline log odds |
| S <-1000; theta_2 <-runif(S, 120, 130) # Hypothetical # distribution for theta_2 |
| S <-1000; theta_3 <-runif(S, 0.2, 0.3) # Hypothetical # distribution for theta_3 |
| S <- 1000 |