"""Example data for the endometrial cancer screening process""" strategy = [ { "age": age, "participation_first": 1.0, "participation_participator": 1.0, "participation_non_participator": 1.0, } for age in range(30, 36, 1) ] """The screening strategy for all women, with probabilities to participate.""" sensitivity = { "hyperplasia_with_atypia": 0.56, "hyperplasia_without_atypia": 0.56, "preclinical": 1.0, } """The probability of the test not to miss each EC state.""" p_hysterectomy = { "negative": 0.1, "hyperplasia_with_atypia": 0.5, "hyperplasia_without_atypia": 0.5, } """The probability that hysterectomy takes place given the test result."""