""" Data of the EC costs and disutilities. Based on: Alblas, Maaike et al. “Cost-effectiveness of prophylactic hysterectomy in first-degree female relatives with Lynch syndrome of patients diagnosed with colorectal cancer in the United States: a microsimulation study.” Cancer medicine vol. 10,19 (2021): 6835-6844. doi:10.1002/cam4.4080 """ labels = ("costs", "LY", "QALY", "n_hysterectomies") discount_rates = (0.03, 0.03, 0.03, 0.00) ce = { "Lifelong": { "conditions": [], "durations": { # Total number of Life Years "life": (0, 1, 1, 0), }, "events": { # Costs of treatment "ec_clinical": (35763, 0, 0, 1), "ec_screening_hysterectomy": (15276, 0, 0, 1), }, }, "Menopause": { "conditions": [("age", "<", 45)], "durations": { # Disutilities due to surgically induced menopause ("ec_clinical_month1", "ec_screening_hysterectomy_month1"): (0, 0, -0.44, 0), ("ec_clinical_months2-3", "ec_screening_hysterectomy_months2-3"): (0, 0, -0.26, 0), ("ec_clinical_cont", "ec_screening_hysterectomy_cont"): (0, 0, -0.12, 0), }, "events": {} }, }