This function calculates the costs associated with the adverse effects of receiving `Dinutuximab β` (GD2) over a given time horizon, based on the provided model parameters.
Arguments
- l_params
A list of model parameters including the list of parameters in the list
l_psm_parameters
in addition to:time_horizon
: The time horizon for the model in years.cycle_length
: The length of a model cycle measured in years.disc_rate_costs
: The annual discount rate for incurred costs.disc_rate_qalys
: The annual discount rate for accrued QALYs.
Examples
if (FALSE) {
# Define model parameters
params <- c(
time_horizon = 10,
cycle_length = 1/12,
disc_rate_costs = 0.035,
disc_rate_qalys = 0.015,
NeuroblastomaPSM::l_psm_parameters
)
# Calculate AE costs
GD2_ae_costs <- NeuroblastomaPSM::calculate_ae_costs(l_params = params)
GD2_ae_costs
}