if (FALSE) {
data(Vaccine, package = "BCEA")
treats <- c("Status quo", "Vaccination")
# Run the health economic evaluation using BCEA
m <- bcea(e.pts, c.pts, ref = 2, interventions = treats)
# Compute the EVPPI for a bunch of parameters
inp <- createInputs(vaccine_mat)
# Compute the EVPPI using INLA/SPDE
if (require("INLA")) {
x0 <- BCEA::evppi(m, c("beta.1." , "beta.2."), input = inp$mat)
plot(x0, pos = c(0,1))
x1 <- BCEA::evppi(m, c(32,48,49), input = inp$mat)
plot(x1, pos = "topright")
plot(x0, col = c("black", "red"), pos = "topright")
plot(x0, col = c(2,3), pos = "bottomright")
plot(x0, pos = c(0,1), graph = "ggplot2")
plot(x1, pos = "top", graph = "ggplot2")
plot(x0, col = c("black", "red"), pos = "right", graph = "ggplot2")
plot(x0, col = c(2,3), size = c(1,2), pos = "bottom", graph = "ggplot2")
plot(x0, graph = "ggplot2", theme = ggplot2::theme_linedraw())
}
if (FALSE)
plot(x0, col = 3, pos = "topright")
# The vector 'col' must have the number of elements for an EVPI
# colour and each of the EVPPI parameters. Forced to black
}
Run the code above in your browser using DataLab