The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
htaBIM provides a complete, reproducible framework for budget impact modelling (BIM) in health technology assessment (HTA), following the ISPOR Task Force guidelines.
It replaces error-prone Excel-based BIM workbooks with structured, auditable R workflows that produce submission-quality outputs for NICE, CADTH, and EU-HTA dossiers.
launch_shiny() for stakeholder communication# From CRAN
install.packages("htaBIM")
# Development version from GitHub
# install.packages("pak")
pak::pkg_install("Heorlytics/htaBIM")library(htaBIM)
# Step 1: Define eligible population
pop <- bim_population(
indication = "Disease X",
country = "custom",
years = 1:5,
prevalence = 0.003,
n_total_pop = 42e6,
diagnosed_rate = 0.60,
treated_rate = 0.45,
eligible_rate = 0.30
)
# Step 2: Define market shares
ms <- bim_market_share(
population = pop,
treatments = c("Drug C (SoC)", "Drug A (new)"),
new_drug = "Drug A (new)",
shares_current = c("Drug C (SoC)" = 1.0, "Drug A (new)" = 0.0),
shares_new = c("Drug C (SoC)" = 0.8, "Drug A (new)" = 0.2),
dynamics = "linear",
uptake_params = list(ramp_years = 3)
)
# Step 3: Define costs
costs <- bim_costs(
treatments = c("Drug C (SoC)", "Drug A (new)"),
currency = "GBP",
drug_costs = c("Drug C (SoC)" = 1500, "Drug A (new)" = 28000)
)
# Step 4: Assemble and run
model <- bim_model(pop, ms, costs, payer = bim_payer_nhs())
summary(model)
# Step 5: Visualise and report
plot(model, type = "line")
plot(model, type = "bar")
bim_report(model)Launch the interactive dashboard for point-and-click model building and stakeholder presentations:
launch_shiny()htaBIM implements the methodology described in:
Sullivan SD, Mauskopf JA, Augustovski F et al. (2014). Budget impact analysis – principles of good practice: report of the ISPOR 2012 Budget Impact Analysis Good Practice II Task Force. Value in Health, 17(1):5-14. doi:10.1016/j.jval.2013.08.2291
Mauskopf JA, Sullivan SD, Annemans L et al. (2007). Principles of good practice for budget impact analysis. Value in Health, 10(5):336-347. doi:10.1111/j.1524-4733.2007.00187.x
citation("htaBIM")Pandey S (2025). htaBIM: Budget Impact Modelling for Health Technology
Assessment. R package version 0.1.0.
https://github.com/Heorlytics/htaBIM
Contributions, bug reports, and feature requests are welcome via GitHub Issues.
MIT (c) 2025 Heorlytics Ltd
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.