Calculate per-patient adverse event costs from AE rates and unit costs
Source:R/bim_costs.R
bim_costs_ae.RdComputes the expected annual cost of adverse event management per patient, as the sum of (AE rate ?? unit cost) across all adverse events.
Value
A named numeric vector of length 1: expected annual AE cost per
patient, suitable for use in bim_costs().
Examples
ae_table <- data.frame(
ae_name = c("Injection site reaction", "Fatigue", "URTI"),
rate = c(0.07, 0.12, 0.09),
unit_cost = c(180, 95, 65),
stringsAsFactors = FALSE
)
bim_costs_ae("Sibeprenlimab", ae_table)
#> Sibeprenlimab
#> 29.85