Utility Model¶
In economics, the utility
is a number that represents how satisfied a person is with a certain
situation. In the context of the LEAP
model, it is used to quantify the health-related quality
of life of individuals with asthma.
Datasets¶
EQ5D¶
The EQ5D is a standardized instrument used to measure health-related quality of life. It consists of five dimensions: mobility, self-care, usual activities, pain/discomfort, and anxiety/depression. The EQ5D is widely used in health economics and clinical trials to assess the impact of diseases and treatments on quality of life.
We use the EQ5D values to calculate the baseline utility for an individual of a given age and sex. For example, suppose we have a 30-year-old female with asthma. We can use the EQ5D values to calculate her baseline utility (her utility if she didn’t have asthma), and then we can compute her net utility by subtracting the utility loss due to asthma.
The EQ5D data was obtained from Table 3 in the paper Canada population norms for the EQ-5D-5L [7].
After processing the EQ5D data, our dataset is formatted as follows:
Column | Type | Description |
---|---|---|
age |
int
|
A person's age in years, range [0, 110]
|
sex |
str
|
F = Female, M = Male |
eq5d |
float
|
The baseline utility for a person of a given age and sex.
Range [0, 1] .
|
sd |
float
|
The standard deviation of the utility value, used to account for uncertainty in the
utility value. Standard deviation for age < 18 is
set to 0 since those EQ5D values were interpolated.
|
Calculating Utility¶
The net utility is given by the formula:
where:
\(u_{\text{baseline}}\) is the baseline utility for a person of a given age and sex (without asthma)
\(d_{\text{exacerbation}}\) is the disutility due to asthma exacerbations
\(d_{\text{control}}\) is the disutility due to asthma control levels
\(A\) is a boolean indicating whether the person has asthma