Attributable risk: Difference between revisions
(→Etiologic fraction: discussion on different EF estimates) |
|||
(6 intermediate revisions by the same user not shown) | |||
Line 10: | Line 10: | ||
==Answer== | ==Answer== | ||
; Risk ratio (RR): risk among the exposed divided by the risk among the | ; Risk ratio (RR): risk among the exposed divided by the risk among the unexposed | ||
:<math>RR = \frac{R_1}{R_0}.</math> | :<math>RR = \frac{R_1}{R_0}.</math> | ||
; | ; Excess fraction: (sometimes called attributable fraction) the fraction of cases '''among the exposed''' that would not have occurred if the exposure would not have taken place: | ||
:<math> | :<math>XF = \frac{RR - 1}{RR}</math> | ||
; Population attributable fraction: the fraction of cases '''among the total population''' that would not have occurred if the exposure would not have taken place. The most useful formulas are | ; Population attributable fraction: the fraction of cases '''among the total population''' that would not have occurred if the exposure would not have taken place. The most useful formulas are | ||
::<math>PAF = 1 - \frac{1}{\sum_{i=0}^k p_i (RR_i)}</math> | ::<math>PAF = 1 - \frac{1}{\sum_{i=0}^k p_i (RR_i)}</math> | ||
::for use with several population subgroups (typically with different exposure levels). Not valid when confounding exists. Subscript i refers to the | ::for use with several population subgroups (typically with different exposure levels). Not valid when confounding exists. Subscript i refers to the i<sup>th</sup> subgroup. p<sub>i</sub> = proportion of '''total population''' in i<sup>th</sup> subgroup. | ||
::<math>PAF = 1- \sum_{i=0}^k \frac{p_{di}}{RR_i} = \sum_i p_{di} \frac{p_{ie}(RR_i - 1)}{p_{ie}(RR_i - 1) + 1}</math> | ::<math>PAF = 1- \sum_{i=0}^k \frac{p_{di}}{RR_i} = \sum_i p_{di} \frac{p_{ie}(RR_i - 1)}{p_{ie}(RR_i - 1) + 1}</math> | ||
::which produces valid estimates when confounding exists but with a problem that parameters are often not known. p<sub>di</sub> is the proportion of '''cases''' falling in subgroup i (so that Σ<sub>i</sub>p<sub>di</sub> = 1), p<sub>ie</sub> is the proportion of '''exposed''' people within subgroup i (and 1-p<sub>ie</sub> is the fraction of unexposed) | ::which produces valid estimates when confounding exists but with a problem that parameters are often not known. p<sub>di</sub> is the proportion of '''cases''' falling in subgroup i (so that Σ<sub>i</sub>p<sub>di</sub> = 1), p<sub>ie</sub> is the proportion of '''exposed''' people within subgroup i (and 1-p<sub>ie</sub> is the fraction of unexposed) | ||
; Etiologic fraction: Fraction of cases '''among the exposed''' that would have occurred later (if at all) if the exposure | ; Etiologic fraction: Fraction of cases '''among the exposed''' that would have occurred later (if at all) if the exposure had not taken place. It cannot be calculated without understanding of the biological mechanism, but there are equations for several specific cases. If survival functions are known, the lower limit of EF can be calculated: | ||
:<math>\int_G [f_1(u) - f_0(u)]\mathrm{d}u / [1 - S_1(t)],</math> | |||
:where 1 means the exposed group, 0 means the unexposed group, f is the proportion of population dying at particular time points, S is the survival function (and thus f(u) = -dS(u)/du), t is the length of the observation time, u the observation time and G is the set of all u < t such that f<sub>1</sub>(u) > f<sub>0</sub>(u). | |||
:: In a specific case where the '''survival distribution is exponential''', the following formula can be used for the lowest possible EF. However, the exponential survival model says nothing about which individuals are affected and lose how much life years, and therefore in this model the actual EF may be between the lower bound and 1. | |||
::<math>EF_l = \frac{RR - 1}{RR^{RR/(RR-1)}}.</math> | |||
:: Finally, it should be remembered that if the rank preserving assumption holds (i.e. the rank of individual deaths is not affected by exposure: everyone dies in the same order as without exposure, just sooner), the EF can be as high as 1. | |||
::<math>EF_u = 1</math> | |||
With this code, you can compare excess fraction and lower (assuming exponential survival distribution) and upper bounds of etiological fraction. | |||
<rcode label="Compare excess and etiologic fractions" embed=1 variables="name:RR|description:What is (are) the relative risk(s), i.e. RR?|default:c(1, 1.02, 1.3, 1,5, 2, 3)"> | |||
<rcode label="Compare | |||
library(OpasnetUtils) | library(OpasnetUtils) | ||
library(psych) | library(psych) | ||
AF <- function(x) {return(data.frame(RR = x, | AF <- function(x) {return(data.frame(RR = x, XF = (x-1)/x, EF_exp_lower = (x-1)/x^(x/(x-1)), EF_upper = 1))} | ||
oprint(AF(RR)) | oprint(AF(RR)) | ||
</rcode> | </rcode> | ||
This code creates a simulated population of 200 individuals that are now 60 years of age. It calculates their survival and | This code creates a simulated population of 200 individuals that are now 60 years of age. It calculates their survival and excess and etiologic fractions in different mechanistic settings. Relative risk of 1.2 and a constant hazard rate will be applied in all scenarios. | ||
<rcode label="Test different etiologic fractions" embed=0 graphics=1 variables=" | <rcode label="Test different etiologic fractions" embed=0 graphics=1 variables=" | ||
Line 89: | Line 81: | ||
RR. <- 1.2 | RR. <- 1.2 | ||
objects.latest("Op_en6007", code_name = "answer") # Fetch correlvar | |||
lifetime <- data.frame( | lifetime <- data.frame( | ||
Line 170: | Line 137: | ||
Sigma <- matrix(crr, nrow = ncol(lifetime), ncol = ncol(lifetime)) + diag(ncol(lifetime))*(1 - crr) | Sigma <- matrix(crr, nrow = ncol(lifetime), ncol = ncol(lifetime)) + diag(ncol(lifetime))*(1 - crr) | ||
lifetime <- correlvar(lifetime, Sigma) | lifetime <- correlvar(lifetime, Sigma) | ||
lifetime <- lifetime[order(lifetime$Unexposed) , ] | |||
for(j in colnames(lifetime)[colnames(lifetime) != "Unexposed"]) { | for(j in colnames(lifetime)[colnames(lifetime) != "Unexposed"]) { | ||
for(i in order(lifetime[[j]], decreasing = TRUE)) { | for(i in order(lifetime[[j]], decreasing = TRUE)) { | ||
Line 251: | Line 219: | ||
There are several different kinds of proportions that sound alike but are not. Therefore, we explain the specific meaning of several terms. | There are several different kinds of proportions that sound alike but are not. Therefore, we explain the specific meaning of several terms. | ||
; Number of people (N): The number of people in the total population considered, including cases, non-cases, exposed and | ; Number of people (N): The number of people in the total population considered, including cases, non-cases, exposed and unexposed. N<sub>1</sub> and N<sub>o</sub> are the numbers of exposed and unexposed people in the population, respectively. | ||
; Classifications: There are three classifications, and every person in the total population belongs to exactly one group in each classification. | ; Classifications: There are three classifications, and every person in the total population belongs to exactly one group in each classification. | ||
:* Disease (D): classes case (c) and non-case (nc) | :* Disease (D): classes case (c) and non-case (nc) | ||
:* Exposure (E): classes exposed (1) and | :* Exposure (E): classes exposed (1) and unexposed (0) | ||
:* Population subgroup (S): classes i = 0, 1, 2, ..., k (typically based on different exposure levels) | :* Population subgroup (S): classes i = 0, 1, 2, ..., k (typically based on different exposure levels) | ||
:* Confounders (C): other factors correlating with exposure and disease and thus potentially causing bias in estimates unless measured and adjusted for. | :* Confounders (C): other factors correlating with exposure and disease and thus potentially causing bias in estimates unless measured and adjusted for. | ||
; | ; Excess fraction (XF): The proportion of exposed cases that would not have occurred without exposure ''on population level''. | ||
; Etiologic fraction (EF): The proportion of exposed cases that would have occurred later (if at all) without exposure. | ; Etiologic fraction (EF): The proportion of exposed cases that would have occurred later (if at all) without exposure ''on individual level''. | ||
; Population attributable fraction (PAF): The proportion of all cases (exposed and unexposed) that would not have occurred without exposure. PAF<sub>i</sub> is | ; Hazard fraction (HF): The proportion of hazard rate that would not be there without exposure, HF = [h<sub>1</sub>(t) - h<sub>0</sub>(t)]/h<sub>1</sub>(t) = [R(t) - 1]/R(t), where h(t) is hazard rate at time t and R(t) = h<sub>1</sub>(t)/h<sub>0</sub>(t). | ||
; Risk of disease (hazard rates): R<sub>1</sub> and R<sub>0</sub> are the risks of disease in the exposed and unexposed group, respectively, and RR = R<sub>1</sub> / R<sub>0</sub>. RR<sub>i</sub> = relative risk comparing | ; Attributable fraction (AF): An ambiguous term that has been used for excess fraction, etiologic fraction and hazard fraction without being specific. Therefore, its use is not recommended. | ||
; Population attributable fraction (PAF): The proportion of all cases (exposed and unexposed) that would not have occurred without exposure ''on population level''. PAF<sub>i</sub> is PAF of subgroup i. | |||
; Risk of disease (hazard rates): R<sub>1</sub> and R<sub>0</sub> are the risks of disease in the exposed and unexposed group, respectively, and RR = R<sub>1</sub> / R<sub>0</sub>. RR<sub>i</sub> = relative risk comparing i<sup>th</sup> exposure level with unexposed group (i = 0). Note that often texts are not clear when they talk about risk proportion = number of cases / number of population and thus risk ratio; and when about hazard rates = number of cases / observation time and thus rate ratio. RR may mean either one. If occurrence of cases is small, risk ratio and rate ratio approach each other, because then cases hardly shorten the observation time in the population. | |||
; Proportion '''exposed''' (p<sub>e</sub>, p<sub>ie</sub>, p<sub>ed</sub>): proportion of exposed among the total population or within subgroup i or within cases (we use subscript d as diseased rather than c as cases to distinguish it from subscript e): p<sub>e</sub> = N(E=1)/N, p<sub>ie</sub> = N(E=1,S=i)/N(S=i), p<sub>ed</sub> = N(E=1,D=c)/N(D=c) | ; Proportion '''exposed''' (p<sub>e</sub>, p<sub>ie</sub>, p<sub>ed</sub>): proportion of exposed among the total population or within subgroup i or within cases (we use subscript d as diseased rather than c as cases to distinguish it from subscript e): p<sub>e</sub> = N(E=1)/N, p<sub>ie</sub> = N(E=1,S=i)/N(S=i), p<sub>ed</sub> = N(E=1,D=c)/N(D=c) | ||
; Proportion of '''population''' (p<sub>i</sub>): proportion of population in subgroups i among the total population: N(S=i)/N. p'<sub>i</sub> is the fraction of population in a counterfactual ideal situation (where the exposure is typically lower). | ; Proportion of '''population''' (p<sub>i</sub>): proportion of population in subgroups i among the total population: N(S=i)/N. p'<sub>i</sub> is the fraction of population in a counterfactual ideal situation (where the exposure is typically lower). | ||
; Proportion of '''cases''' of the disease (p<sub>di</sub>): proportion of cases in subgroups i among the total cases: N(D=c,S=i)/N(D=c) (so that Σ<sub>i</sub>p<sub>di</sub> = 1). | ; Proportion of '''cases''' of the disease (p<sub>di</sub>): proportion of cases in subgroups i among the total cases: N(D=c,S=i)/N(D=c) (so that Σ<sub>i</sub>p<sub>di</sub> = 1). | ||
=== | === Excess fraction === | ||
Rockhill et al.<ref name="rockhill">Rockhill B, Newman B, Weinberg C. use and misuse of population attributable fractions. American Journal of Public Health 1998: 88 (1) 15-19.[http://www.ncbi.nlm.nih.gov/pubmed/9584027]</ref> | Rockhill et al.<ref name="rockhill">Rockhill B, Newman B, Weinberg C. use and misuse of population attributable fractions. American Journal of Public Health 1998: 88 (1) 15-19.[http://www.ncbi.nlm.nih.gov/pubmed/9584027]</ref> | ||
give an extensive description about different ways to calculate | give an extensive description about different ways to calculate excess fraction (XF) and population attributable fraction (PAF) and assumptions needed in each approach. Modern Epidemiology | ||
<ref>Kenneth J. Rothman, Sander Greenland, Timothy L. Lash: Modern Epidemiology. Lippincott Williams & Wilkins, 2008. 758 pages.</ref> | <ref>Kenneth J. Rothman, Sander Greenland, Timothy L. Lash: Modern Epidemiology. Lippincott Williams & Wilkins, 2008. 758 pages.</ref> | ||
is the authoritative source of epidemiology. They first define '' | is the authoritative source of epidemiology. They first define ''excess fraction XF'' for a cohort of people (pages 295-297). It is the fraction of cases among the exposed that would not have occurred if the exposure would not have taken place.{{reslink|Choosing the right fraction}} However, both sources use the term attributable fraction rather than excess fraction. | ||
==== Impact of confounders ==== | ==== Impact of confounders ==== | ||
[[File:Darrow Steenland AF bias analysis png.png|thumb|400px|Darrow and Steenland<ref name="darrow">Darrow LA, Steenland NK. Confounding and bias in the attributable fraction. Epidemiology 2011: 22 (1): 53-58. [http://www.ncbi.nlm.nih.gov/pubmed/20975564] {{doi|10.1097/EDE.0b013e3181fce49b}}</ref> studied the direction and magnitude of bias in | [[File:Darrow Steenland AF bias analysis png.png|thumb|400px|Darrow and Steenland<ref name="darrow">Darrow LA, Steenland NK. Confounding and bias in the attributable fraction. Epidemiology 2011: 22 (1): 53-58. [http://www.ncbi.nlm.nih.gov/pubmed/20975564] {{doi|10.1097/EDE.0b013e3181fce49b}}</ref> studied the direction and magnitude of bias in excess fraction with different confounding situations.]] | ||
The problem with the two PAF equations (see [[#Answer|]]) is that the former has easier-to-collect input, but it is not valid if there is confounding. It is still often mistakenly used. The latter equation would produce an unbiased estimate, but the data needed is harder to collect. Darrow and Steenland<ref name="darrow">Darrow LA, Steenland NK. Confounding and bias in the attributable fraction. Epidemiology 2011: 22 (1): 53-58. [http://www.ncbi.nlm.nih.gov/pubmed/20975564] {{doi|10.1097/EDE.0b013e3181fce49b}}</ref> have studied the impact of confounding on the bias in attributable fraction. This is their summary: | |||
The problem with the two PAF equations (see [[#Answer|Answer]]) is that the former has easier-to-collect input, but it is not valid if there is confounding. It is still often mistakenly used. The latter equation would produce an unbiased estimate, but the data needed is harder to collect. Darrow and Steenland<ref name="darrow">Darrow LA, Steenland NK. Confounding and bias in the attributable fraction. Epidemiology 2011: 22 (1): 53-58. [http://www.ncbi.nlm.nih.gov/pubmed/20975564] {{doi|10.1097/EDE.0b013e3181fce49b}}</ref> have studied the impact of confounding on the bias in attributable fraction. This is their summary: | |||
{| {{prettytable}} | {| {{prettytable}} | ||
|+'''The impact of confounding on the bias in | |+'''The impact of confounding on the bias in excess fraction. | ||
! Bias in | ! Bias in excess fraction | ||
! Confounding in RR | ! Confounding in RR | ||
! Confounding in inputs | ! Confounding in inputs | ||
Line 307: | Line 278: | ||
|---- | |---- | ||
|1 | |1 | ||
|<math>\frac{ | |<math>\frac{IP_t - IP_0}{IP_t} \approx \frac{I_t - I_0}{I_t}</math> | ||
|is empirical approximation of <ref name="rockhill"/> | |is empirical approximation of <ref name="rockhill"/> | ||
<math>\frac{P(D) - \sum_C P(D|C, \bar{E}) P(C)}{P(D)}</math> | <math>\frac{P(D) - \sum_C P(D|C, \bar{E}) P(C)}{P(D)}</math> | ||
where IP<sub>1</sub> = cumulative proportion of total population developing disease over specified interval; IP<sub>0</sub> = cumulative proportion of unexposed persons who develop disease over interval, C means other confounders, and E is exposure and a bar above E means no exposure. Valid only when no confounding of exposure(s) of interest exists. If disease is rare over time interval, ratio of average incidence rates I<sub>0</sub>/I<sub> | where IP<sub>1</sub> = cumulative proportion of total population developing disease over specified interval; IP<sub>0</sub> = cumulative proportion of unexposed persons who develop disease over interval, C means other confounders, and E is exposure and a bar above E means no exposure. Valid only when no confounding of exposure(s) of interest exists. If disease is rare over time interval, ratio of average incidence rates I<sub>0</sub>/I<sub>t</sub> approximates ratio of cumulative incidence proportions, and thus formula can be written as (I<sub>t</sub> - I<sub>0</sub>)I<sub>t</sub>. Both formulations found in many widely used epidemiology textbooks. {{attack|# |Is there an error in the text about the approximation?|--[[User:Jouni|Jouni]] ([[User talk:Jouni|talk]]) 10:05, 28 June 2016 (UTC)}} | ||
|---- | |---- | ||
|2 | |2 | ||
Line 320: | Line 291: | ||
|3 | |3 | ||
|<math>\frac{\sum_{i=0}^k p_i (RR_i - 1)}{1 + \sum_{i=0}^k p_i (RR_i - 1)} = 1 - \frac{1}{\sum_{i=0}^k p_i (RR_i)}</math> | |<math>\frac{\sum_{i=0}^k p_i (RR_i - 1)}{1 + \sum_{i=0}^k p_i (RR_i - 1)} = 1 - \frac{1}{\sum_{i=0}^k p_i (RR_i)}</math> | ||
|Extension of formula 2 for use with multicategory exposures. Not valid when confounding exists. Subscript i refers to the | |Extension of formula 2 for use with multicategory exposures. Not valid when confounding exists. Subscript i refers to the i<sup>th</sup> exposure level. Derived by Walter<ref name="walter">Walter SD. The estimation and interpretation of attributable fraction in health research. Biometrics. 1976;32:829-849.</ref>; given in Kleinbaum et al.<ref name="kleinbaum">Kleinbaum DG, Kupper LL, Morgenstem H. Epidemiologic Research. Belmont, Calif: Lifetime Learning Publications; 1982:163.</ref> but not in other widely used epidemiology texts. | ||
|---- | |---- | ||
|4 | |4 | ||
|<math>\sum_i p_{di} \frac{p_{ie}(RR_i - 1)}{p_{ie}(RR_i - 1) + 1}</math> | |<math>\sum_i p_{di} \frac{p_{ie}(RR_i - 1)}{p_{ie}(RR_i - 1) + 1}</math> | ||
|A useful formulation from<ref name="darrow"/>. Note that RR<sub>i</sub> is the risk ratio for subgroup i due to the subgroup-specific exposure level and | |A useful formulation from<ref name="darrow"/>. Note that RR<sub>i</sub> is the risk ratio for subgroup i due to the subgroup-specific exposure level and assumes that everyone in that subgroup is exposed to that level or none. | ||
|---- | |---- | ||
|5 | |5 | ||
Line 381: | Line 352: | ||
[[File:Scatterplot of lifetimes with preserving order or minimizing EF.png|thumb|400px|Although the survival curve can be observed, we don't know which individuals would have died in a counterfactual situation. Here we assume that we know that. On the left, the order of deaths is preserved irrespective of exposure, while on the right, the maximum amount of life loss is concentrated to the minimum number of individuals, thus minimizing the etiologic fraction. Black line: one-to-one relationship between lifetimes in unexposed and exposed situations.]] | [[File:Scatterplot of lifetimes with preserving order or minimizing EF.png|thumb|400px|Although the survival curve can be observed, we don't know which individuals would have died in a counterfactual situation. Here we assume that we know that. On the left, the order of deaths is preserved irrespective of exposure, while on the right, the maximum amount of life loss is concentrated to the minimum number of individuals, thus minimizing the etiologic fraction. Black line: one-to-one relationship between lifetimes in unexposed and exposed situations.]] | ||
''Etiologic fraction | ''Etiologic fraction (EF)'' is defined as the fraction of cases that are advanced in time because of exposure.<ref name="robins">Robins JM, Greenland S. Estimability and estimation of excess and etiologic fractions. Statistics in Medicine 1989 (8) 845-859.</ref>{{reslink|Choosing the right fraction}} In other words, those cases would have occurred later (if at all), if there had not been exposure. EF can also be called ''probability of causation'', which has importance in court. It can also be used to calculate ''premature cases'', but that term is ambiguous and sometimes it is used to mean cases that have been ''substantially'' advanced in time, in contrast to the harvesting effect where an exposure kills people that would have died anyway within a few days. There has been a heated discussion about harvesting effect related to fine particles. Therefore, sometimes excess fraction is used instead to calculate what they call premature mortality, but unfortunately that practice causes even more confusion.{{reslink|Meaning of premature}} Therefore, it is important to explicitly explain what is meant by the word ''premature''. | ||
Robins and Greenland<ref name="robins"/> studied the estimability of etiologic fraction. They concluded that observations are not enough to conclude about the precise value of EF, because irrespective of observation, the same amount of observed life years lost may be due to many people losing a short time each, or due to a few losing a long time each. The upper limit in theory is always 1, and the lower bound they estimated by this equation (equation 9 in the article): | Robins and Greenland<ref name="robins"/> studied the estimability of etiologic fraction. They concluded that observations are not enough to conclude about the precise value of EF, because irrespective of observation, the same amount of observed life years lost may be due to many people losing a short time each, or due to a few losing a long time each. The upper limit in theory is always 1, and the lower bound they estimated by this equation (equation 9 in the article): | ||
Line 387: | Line 358: | ||
<math>\int_G [f_1(u) - f_0(u)]\mathrm{d}u / [1 - S_1(t)],</math> | <math>\int_G [f_1(u) - f_0(u)]\mathrm{d}u / [1 - S_1(t)],</math> | ||
where 1 means the exposed group, 0 means the | where 1 means the exposed group, 0 means the unexposed group, f is the proportion of population dying at particular time points, S is the survival function (and thus f(u) = -dS(u)/du), t is the length of the observation time, u the observation time and G is the set of all u < t such that f<sub>1</sub>(u) > f<sub>0</sub>(u). | ||
Although the exact value of etiologic fraction cannot be estimated directly from risk ratio (RR), different models offer equations to estimate EF. It is just important to understand, discuss, and communicate, which of the models most closely represents the actual situation observed. Three models are explained here.{{reslink|Different models for etiologic fraction}} | Although the exact value of etiologic fraction cannot be estimated directly from risk ratio (RR), different models offer equations to estimate EF. It is just important to understand, discuss, and communicate, which of the models most closely represents the actual situation observed. Three models are explained here.{{reslink|Different models for etiologic fraction}} | ||
'''Rank-preserving model''' says that everyone dies at the same rank order as without exposure, but that the deaths occur earlier. If the exposed population loses life years compared with unexposed population, it is in theory always possible that everyone dies a bit earlier and thus | '''Rank-preserving model''' says that everyone dies at the same rank order as without exposure, but that the deaths occur earlier. If the exposed population loses life years compared with unexposed population, it is in theory always possible that everyone dies a bit earlier and thus | ||
<math>EF_u = 1.</math> | |||
'''Competing causes model''' is the most commonly assumed model, but | '''Competing causes model''' is the most commonly assumed model, but often people do not realise that they make such an assumption. The model says that the exposure of interest and other causes of death are constantly competing, and that the impact of the exposure is relative to the other competing causes. In other words, the hazard rate in the exposed population is h<sub>1</sub>(t) = RR h<sub>0</sub>(t). Hazard rates are functions of time, and may become very high in very old populations. In any case, the proportional impact of the exposure stays constant. | ||
In the case | In the case where competing causes model and independence assumtption applies, lower end of EF range is often close to the ''excess fraction XF''. (But it can be lower, as the next example with a skewed exponential distribution demonstrates.) | ||
<math> | <math> EF_l = XF = \frac{RR - 1}{RR}.</math> | ||
'''Exponential survival model''' assumes that the hazard rate is constant and the deaths occur following the exponential distribution. Although this model has very elegant formulas, it is typically far from plausible, as the differences in survival may be very large. E.g. with average life expectancy of 70 years, 10 % of the population would die before 8 years of age, while 10 % would live beyond 160 years. In situations where exponential survival model can be used, the lower bound of EF (equation 9<ref name="robins"/>) is as low as | '''Exponential survival model''' assumes that the hazard rate is constant and the deaths occur following the exponential distribution. Although this model has very elegant formulas, it is typically far from plausible, as the differences in survival may be very large. E.g. with average life expectancy of 70 years, 10 % of the population would die before 8 years of age, while 10 % would live beyond 160 years. In situations where exponential survival model can be used, the lower bound of EF (equation 9<ref name="robins"/>) is as low as | ||
Line 406: | Line 379: | ||
{| {{prettytable}} | {| {{prettytable}} | ||
|+'''Different ways to calculate etiologic and | |+'''Different ways to calculate etiologic and excess fractions.'''<br/> | ||
Equations 9 and 11 refer to Robins and Greenland<ref name="robins"/>. True EF is calculated by comparing individual lifetimes in counterfactual situations in the model. Low means the lower confidence limit. | Equations 9 and 11 refer to Robins and Greenland<ref name="robins"/>. True EF is calculated by comparing individual lifetimes in counterfactual situations in the model. Low means the lower confidence limit. | ||
|---- | |---- | ||
!Survival distribution | !Survival distribution | ||
!Scenario | !Scenario | ||
! | !Excess fraction XF | ||
!True etiologic fraction | !True etiologic fraction | ||
!EF_low from Eq 9 | !EF_low from Eq 9 | ||
Line 433: | Line 406: | ||
As we can see from the table, true etiologic fraction can vary substantially - in theory. High values assume that most people are affected by a small life loss. This might be true with causes that worsen general health, thus killing the person a bit earlier than what would have happened if the person had been in a hardier state. | As we can see from the table, true etiologic fraction can vary substantially - in theory. High values assume that most people are affected by a small life loss. This might be true with causes that worsen general health, thus killing the person a bit earlier than what would have happened if the person had been in a hardier state. | ||
When we compare equations 9 and 11, we can see that the former never performs worse than the latter. This is simply because equation 11 was derived from equation 9 by making an additional assmuption that the survival distribution is exponential. Indeed, in such a case they produce identical values but in other cases equation 11 underestimates EF compared with equation 9. A practical conclusion is that if survival curves for exposed and unexposed groups are available, equation 9 rather than equation 11 should always be used. Even | When we compare equations 9 and 11, we can see that the former never performs worse than the latter. This is simply because equation 11 was derived from equation 9 by making an additional assmuption that the survival distribution is exponential. Indeed, in such a case they produce identical values but in other cases equation 11 underestimates EF compared with equation 9. A practical conclusion is that if survival curves for exposed and unexposed groups are available, equation 9 rather than equation 11 should always be used. Even excess fraction is usually a better estimate than an estimate from equation 11, with the exception of exponential survival distribution. | ||
=== Calculations === | === Calculations === | ||
Line 660: | Line 633: | ||
cat("Ovariables lif, le, RR, fr, surv, EF_eq9, EF_true, metrices stored.\n") | cat("Ovariables lif, le, RR, fr, surv, EF_eq9, EF_true, metrices stored.\n") | ||
</rcode> | |||
'''Demonstration of hazard fractions, survival, and age at death | |||
:''Figure for manuscript Morfeld, Erren, Hammit etc. | |||
<rcode> | |||
library(ggplot2) | |||
library(reshape2) | |||
# Data from https://www.ssa.gov/oact/STATS/table4c6.html | |||
h1 <- c( # Probability of dying per year by age (0-119 years) | |||
0.006322, | |||
0.000396, | |||
0.000282, | |||
0.000212, | |||
0.000186, | |||
0.000162, | |||
0.000144, | |||
0.000129, | |||
0.000114, | |||
0.0001, | |||
0.000093, | |||
0.000101, | |||
0.000136, | |||
0.000205, | |||
0.000299, | |||
0.000401, | |||
0.000505, | |||
0.00062, | |||
0.000747, | |||
0.000879, | |||
0.001019, | |||
0.001151, | |||
0.001252, | |||
0.001309, | |||
0.001335, | |||
0.001349, | |||
0.001369, | |||
0.001391, | |||
0.001422, | |||
0.001459, | |||
0.001498, | |||
0.001536, | |||
0.001576, | |||
0.001616, | |||
0.001661, | |||
0.001716, | |||
0.001782, | |||
0.001854, | |||
0.001931, | |||
0.002018, | |||
0.002123, | |||
0.002252, | |||
0.002413, | |||
0.002611, | |||
0.002845, | |||
0.003109, | |||
0.003402, | |||
0.003736, | |||
0.004114, | |||
0.004533, | |||
0.004987, | |||
0.005473, | |||
0.005997, | |||
0.00656, | |||
0.007159, | |||
0.007803, | |||
0.00848, | |||
0.00917, | |||
0.009863, | |||
0.010572, | |||
0.011354, | |||
0.012202, | |||
0.013061, | |||
0.01392, | |||
0.014819, | |||
0.015826, | |||
0.016986, | |||
0.018295, | |||
0.019776, | |||
0.021448, | |||
0.02338, | |||
0.025549, | |||
0.027885, | |||
0.030374, | |||
0.033099, | |||
0.036254, | |||
0.039882, | |||
0.043879, | |||
0.048256, | |||
0.053123, | |||
0.058711, | |||
0.065081, | |||
0.072139, | |||
0.079912, | |||
0.088529, | |||
0.098148, | |||
0.108902, | |||
0.120886, | |||
0.134149, | |||
0.148699, | |||
0.164525, | |||
0.1816, | |||
0.199884, | |||
0.219331, | |||
0.239886, | |||
0.260269, | |||
0.280109, | |||
0.299013, | |||
0.316578, | |||
0.332406, | |||
0.349027, | |||
0.366478, | |||
0.384802, | |||
0.404042, | |||
0.424244, | |||
0.445456, | |||
0.467729, | |||
0.491116, | |||
0.515671, | |||
0.541455, | |||
0.568528, | |||
0.596954, | |||
0.626802, | |||
0.658142, | |||
0.691049, | |||
0.725602, | |||
0.761882, | |||
0.799976, | |||
0.839975, | |||
0.881973 | |||
) | |||
h0 <- h1/1.5 | |||
df <- data.frame( | |||
Age = 0:119, | |||
h1 = h1, | |||
h0 = h0, | |||
S1 = exp(-cumsum(h1)), | |||
S0 = exp(-cumsum(h0)) | |||
) | |||
df$f1 <- df$h1 * df$S1 | |||
df$f0 <- df$h0 * df$S0 | |||
dfm <- melt(df, id.var="Age") | |||
dfm$Exposure <- ifelse(as.numeric(substr(dfm$variable,2,2)), "Exposed","Nonexposed") | |||
dfm$Parameter <- substr(dfm$variable,1,1) | |||
dfm$Parameter <- factor( | |||
dfm$Parameter, | |||
levels=c("h","S", "f"), | |||
labels=c("Hazard rate h (P/year)","Survival S (P)","Age at death f (pd)") | |||
) | |||
pdf("//cesium/jtue$/_Documents/Survivalfunctions.pdf", height=14,width=10.5) | |||
ggplot(dfm, aes(x=Age, y=value, linetype=Exposure))+geom_line(size=1)+ | |||
facet_grid(Parameter~., scales="free_y")+ | |||
labs(y="Probability (P) or probability density (pd)")+ | |||
theme_bw(base_size=24)+theme(legend.position="bottom") | |||
dev.off() | |||
</rcode> | </rcode> | ||
== See also == | == See also == | ||
* These Wikipedia pages should be updated and made coherent. Also they should distinguish etiological fraction, excess fraction, and attributable fraction and describe their important conceptual differences. | |||
** [[:en:Attributable risk]] (etiologic fraction redirects here) | |||
** [[:en:Relative risk reduction]] | |||
** [[:en:Risk difference]] | |||
** [[:en:Preventable fraction for the population]] | |||
** [[:en:Preventable fraction among the unexposed]] | |||
** [[:en:Attributable fraction for the population]] | |||
** [[:en:Population Impact Measures]] | |||
* [[Health impact assessment]] | * [[Health impact assessment]] | ||
* [ | * Jacqueline C. M. Witteman, Ralph B. D'Agostino, Theo Stijnen, William B. Kannel, Janet C. Cobb, Maria A. J. de Ridder, Albert Hofman and James M. Robins. G-estimation of Causal Effects: Isolated Systolic Hypertension and Cardiovascular Death in the Framingham Heart Study. Am. J. Epidemiol. (1998) 148 (4): 390-401. [http://aje.oxfordjournals.org/content/148/4/390.short] | ||
==References== | ==References== | ||
<references/> | <references/> |
Latest revision as of 16:51, 7 May 2019
In Opasnet many pages being worked on and are in different classes of progression. Thus the information on those pages should be regarded with consideration. The progression class of this page has been assessed:
|
The content and quality of this page is/was being curated by the project that produced the page. |
Moderator:Jouni (see all) |
|
Upload data
|
Attributable risk is a fraction of total risk that can be attributed to a particular cause. There are a few different ways to calculate it. Population attributable fraction of an exposure agent is the fraction of disease that would disappear if the exposure to that agent would disappear in a population. Etiologic fraction is the fraction of cases that have occurred earlier than they would have occurred (if at all) without exposure. Etiologic fracion cannot typically be calculated based on risk ratio (RR) alone, but it requires knowledge about biological mechanisms.
Question
How to calculate attributable risk? What different approaches are there, and what are their differences in interpretation and use?
Answer
- Risk ratio (RR)
- risk among the exposed divided by the risk among the unexposed
- Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle RR = \frac{R_1}{R_0}.}
- Excess fraction
- (sometimes called attributable fraction) the fraction of cases among the exposed that would not have occurred if the exposure would not have taken place:
- Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle XF = \frac{RR - 1}{RR}}
- Population attributable fraction
- the fraction of cases among the total population that would not have occurred if the exposure would not have taken place. The most useful formulas are
- Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle PAF = 1 - \frac{1}{\sum_{i=0}^k p_i (RR_i)}}
- for use with several population subgroups (typically with different exposure levels). Not valid when confounding exists. Subscript i refers to the ith subgroup. pi = proportion of total population in ith subgroup.
- Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle PAF = 1- \sum_{i=0}^k \frac{p_{di}}{RR_i} = \sum_i p_{di} \frac{p_{ie}(RR_i - 1)}{p_{ie}(RR_i - 1) + 1}}
- which produces valid estimates when confounding exists but with a problem that parameters are often not known. pdi is the proportion of cases falling in subgroup i (so that Σipdi = 1), pie is the proportion of exposed people within subgroup i (and 1-pie is the fraction of unexposed)
- Etiologic fraction
- Fraction of cases among the exposed that would have occurred later (if at all) if the exposure had not taken place. It cannot be calculated without understanding of the biological mechanism, but there are equations for several specific cases. If survival functions are known, the lower limit of EF can be calculated:
- Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \int_G [f_1(u) - f_0(u)]\mathrm{d}u / [1 - S_1(t)],}
- where 1 means the exposed group, 0 means the unexposed group, f is the proportion of population dying at particular time points, S is the survival function (and thus f(u) = -dS(u)/du), t is the length of the observation time, u the observation time and G is the set of all u < t such that f1(u) > f0(u).
- In a specific case where the survival distribution is exponential, the following formula can be used for the lowest possible EF. However, the exponential survival model says nothing about which individuals are affected and lose how much life years, and therefore in this model the actual EF may be between the lower bound and 1.
- Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle EF_l = \frac{RR - 1}{RR^{RR/(RR-1)}}.}
- Finally, it should be remembered that if the rank preserving assumption holds (i.e. the rank of individual deaths is not affected by exposure: everyone dies in the same order as without exposure, just sooner), the EF can be as high as 1.
- Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle EF_u = 1}
With this code, you can compare excess fraction and lower (assuming exponential survival distribution) and upper bounds of etiological fraction.
This code creates a simulated population of 200 individuals that are now 60 years of age. It calculates their survival and excess and etiologic fractions in different mechanistic settings. Relative risk of 1.2 and a constant hazard rate will be applied in all scenarios.
Rationale
Definitions of terms
There are several different kinds of proportions that sound alike but are not. Therefore, we explain the specific meaning of several terms.
- Number of people (N)
- The number of people in the total population considered, including cases, non-cases, exposed and unexposed. N1 and No are the numbers of exposed and unexposed people in the population, respectively.
- Classifications
- There are three classifications, and every person in the total population belongs to exactly one group in each classification.
- Disease (D): classes case (c) and non-case (nc)
- Exposure (E): classes exposed (1) and unexposed (0)
- Population subgroup (S): classes i = 0, 1, 2, ..., k (typically based on different exposure levels)
- Confounders (C): other factors correlating with exposure and disease and thus potentially causing bias in estimates unless measured and adjusted for.
- Excess fraction (XF)
- The proportion of exposed cases that would not have occurred without exposure on population level.
- Etiologic fraction (EF)
- The proportion of exposed cases that would have occurred later (if at all) without exposure on individual level.
- Hazard fraction (HF)
- The proportion of hazard rate that would not be there without exposure, HF = [h1(t) - h0(t)]/h1(t) = [R(t) - 1]/R(t), where h(t) is hazard rate at time t and R(t) = h1(t)/h0(t).
- Attributable fraction (AF)
- An ambiguous term that has been used for excess fraction, etiologic fraction and hazard fraction without being specific. Therefore, its use is not recommended.
- Population attributable fraction (PAF)
- The proportion of all cases (exposed and unexposed) that would not have occurred without exposure on population level. PAFi is PAF of subgroup i.
- Risk of disease (hazard rates)
- R1 and R0 are the risks of disease in the exposed and unexposed group, respectively, and RR = R1 / R0. RRi = relative risk comparing ith exposure level with unexposed group (i = 0). Note that often texts are not clear when they talk about risk proportion = number of cases / number of population and thus risk ratio; and when about hazard rates = number of cases / observation time and thus rate ratio. RR may mean either one. If occurrence of cases is small, risk ratio and rate ratio approach each other, because then cases hardly shorten the observation time in the population.
- Proportion exposed (pe, pie, ped)
- proportion of exposed among the total population or within subgroup i or within cases (we use subscript d as diseased rather than c as cases to distinguish it from subscript e): pe = N(E=1)/N, pie = N(E=1,S=i)/N(S=i), ped = N(E=1,D=c)/N(D=c)
- Proportion of population (pi)
- proportion of population in subgroups i among the total population: N(S=i)/N. p'i is the fraction of population in a counterfactual ideal situation (where the exposure is typically lower).
- Proportion of cases of the disease (pdi)
- proportion of cases in subgroups i among the total cases: N(D=c,S=i)/N(D=c) (so that Σipdi = 1).
Excess fraction
Rockhill et al.[1] give an extensive description about different ways to calculate excess fraction (XF) and population attributable fraction (PAF) and assumptions needed in each approach. Modern Epidemiology [2] is the authoritative source of epidemiology. They first define excess fraction XF for a cohort of people (pages 295-297). It is the fraction of cases among the exposed that would not have occurred if the exposure would not have taken place.R↻ However, both sources use the term attributable fraction rather than excess fraction.
Impact of confounders
The problem with the two PAF equations (see Answer) is that the former has easier-to-collect input, but it is not valid if there is confounding. It is still often mistakenly used. The latter equation would produce an unbiased estimate, but the data needed is harder to collect. Darrow and Steenland[3] have studied the impact of confounding on the bias in attributable fraction. This is their summary:
Bias in excess fraction | Confounding in RR | Confounding in inputs |
---|---|---|
AF bias (-), calculated AF is smaller than true AF | Conf RR (+), crude RR is larger than adjusted (true) RR | Confounder is positively associated with exposure and disease (++) |
Confounder is negatively associated with exposure and disease (--) | ||
AF bias (+), calculated AF is larger than true AF | Conf RR (-), crude RR is smaller than adjusted (true) RR | Confounder is negatively associated with exposure and positively with disease (-+) |
Confounder is positively associated with exposure and negatively with disease (+-) |
Population attributable fraction
The population attributable fraction PAF is the fraction of all cases (exposed and unexposed) that would not have occurred if the exposure had been absent.
# | Formula | Description |
---|---|---|
1 | Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{IP_t - IP_0}{IP_t} \approx \frac{I_t - I_0}{I_t}} | is empirical approximation of [1]
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{P(D) - \sum_C P(D|C, \bar{E}) P(C)}{P(D)}} where IP1 = cumulative proportion of total population developing disease over specified interval; IP0 = cumulative proportion of unexposed persons who develop disease over interval, C means other confounders, and E is exposure and a bar above E means no exposure. Valid only when no confounding of exposure(s) of interest exists. If disease is rare over time interval, ratio of average incidence rates I0/It approximates ratio of cumulative incidence proportions, and thus formula can be written as (It - I0)It. Both formulations found in many widely used epidemiology textbooks. ⇤--#: . Is there an error in the text about the approximation? --Jouni (talk) 10:05, 28 June 2016 (UTC) (type: truth; paradigms: science: attack) |
2 | Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{p_e(RR-1)}{p_e(RR-1)+1}} | Transformation of formula 1.[1] Not valid when there is confounding of exposure-disease association. RR may be ratio of two cumulative incidence proportions (risk ratio), two (average) incidence rates (rate ratio), or an approximation of one of these ratios. Found in many widely used epidemiology texts, but often with no warning about invalidness when confounding exists. |
3 | Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{\sum_{i=0}^k p_i (RR_i - 1)}{1 + \sum_{i=0}^k p_i (RR_i - 1)} = 1 - \frac{1}{\sum_{i=0}^k p_i (RR_i)}} | Extension of formula 2 for use with multicategory exposures. Not valid when confounding exists. Subscript i refers to the ith exposure level. Derived by Walter[4]; given in Kleinbaum et al.[5] but not in other widely used epidemiology texts. |
4 | Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \sum_i p_{di} \frac{p_{ie}(RR_i - 1)}{p_{ie}(RR_i - 1) + 1}} | A useful formulation from[3]. Note that RRi is the risk ratio for subgroup i due to the subgroup-specific exposure level and assumes that everyone in that subgroup is exposed to that level or none. |
5 | Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle p_{ed}(\frac{RR-1}{RR})} | Alternative expression of formula 3.[1] Produces internally valid estimate when confounding exists and when, as a result, adjusted relative risks must be used.[6] In Kleinbaum et al.[5] and Schlesselman.[7] |
6 | Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \sum_{i=0}^k p_{di} (\frac{RR_i - 1}{RR_i}) = 1- \sum_{i=0}^k \frac{p_{di}}{RR_i}} | Extension of formula 5 for use with multicategory exposures.[1] Produces internally valid estimate when confounding exists and when, as a result, adjusted relative risks must be used. See Bruzzi et al. [8] and Miettinen[6] for discussion and derivations; in Kleinbaum et al.[5] and Schlesselman.[7] |
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle PAF = \frac{N_1 (R_1 - R_0)}{N_1 R_1 + N_0 R_0} = \frac{N_1 (R_1 - R_0)/R_0}{N_1 R_1/R_0 + N_0 R_0/R_0} = \frac{N_1 (RR - 1)}{N_1 RR + N_0}}
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle = \frac{ \frac{N_1 (RR - 1)}{N_1 + N_0} }{ \frac{N_1 RR + N_0}{N_1 + N_0}} = \frac{ p_e (RR - 1) }{ \frac{N_1 RR - N_1 + (N_1 + N_0)}{N_1 + N_0}} = \frac{p_e (RR - 1)}{p_e RR - p_e + 1} = \frac{p_e (RR - 1)}{p_e (RR - 1) + 1}.}
Note that there is a typo in the Modern Epidemiology book: the denominator should be p(RR-1)+1, not p(RR-1)-1.
Population attributable fraction can be calculated as a weighted average based on subgroup data:
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle PAF = \Sigma_i p_{di} PAF_{i}.}
Specifically, we can divide the cohort into subgroups based on exposure (in the simplest case exposed and unexposed), so we get
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle PAF = p_{ed} \frac{1(RR - 1)}{1(RR - 1) + 1} + (1 - p_{ed}) \frac{0(RR - 1)}{0(RR - 1) +1} = p_{ed} \frac{RR - 1}{RR},}
where pc is the proportion of cases in the exposed group among all cases; this is the same as exposure prevalence among cases.
WHO approach
According to WHO, PAF is [9]
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle PAF = \frac{\sum_{i=0}^k p_i RR_i - \Sigma_{i=0}^k p'_i RR_i}{\Sigma_{i=0}^k p_i RR_i}.}
We can see that this reduces to PAF equation 2 when we limit our examination to a situation where there are only two population groups, one exposed to background level (with relative risk 1) and the other exposed to a higher level (with relative risk RR). In the counterfactual situation nobody is exposed. in this specific case, pi = pe. Thus, we get
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle PAF = \frac{(p_e RR + (1-p_e)*1) - (0*RR + 1*1)}{p_e RR + (1-p_e)*1}}
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle PAF = \frac{p_e RR - p_e}{p_i RR + 1 - p_e}}
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle PAF = \frac{p_e(RR - 1)}{p_e(RR -1) + 1}}
----#: . Constant background assumption section was archived because it was only relevant for a previous HIA model version. --Jouni (talk) 13:17, 25 April 2016 (UTC) (type: truth; paradigms: science: comment)
Etiologic fraction
Etiologic fraction (EF) is defined as the fraction of cases that are advanced in time because of exposure.[10]R↻ In other words, those cases would have occurred later (if at all), if there had not been exposure. EF can also be called probability of causation, which has importance in court. It can also be used to calculate premature cases, but that term is ambiguous and sometimes it is used to mean cases that have been substantially advanced in time, in contrast to the harvesting effect where an exposure kills people that would have died anyway within a few days. There has been a heated discussion about harvesting effect related to fine particles. Therefore, sometimes excess fraction is used instead to calculate what they call premature mortality, but unfortunately that practice causes even more confusion.R↻ Therefore, it is important to explicitly explain what is meant by the word premature.
Robins and Greenland[10] studied the estimability of etiologic fraction. They concluded that observations are not enough to conclude about the precise value of EF, because irrespective of observation, the same amount of observed life years lost may be due to many people losing a short time each, or due to a few losing a long time each. The upper limit in theory is always 1, and the lower bound they estimated by this equation (equation 9 in the article):
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \int_G [f_1(u) - f_0(u)]\mathrm{d}u / [1 - S_1(t)],}
where 1 means the exposed group, 0 means the unexposed group, f is the proportion of population dying at particular time points, S is the survival function (and thus f(u) = -dS(u)/du), t is the length of the observation time, u the observation time and G is the set of all u < t such that f1(u) > f0(u).
Although the exact value of etiologic fraction cannot be estimated directly from risk ratio (RR), different models offer equations to estimate EF. It is just important to understand, discuss, and communicate, which of the models most closely represents the actual situation observed. Three models are explained here.R↻
Rank-preserving model says that everyone dies at the same rank order as without exposure, but that the deaths occur earlier. If the exposed population loses life years compared with unexposed population, it is in theory always possible that everyone dies a bit earlier and thus
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle EF_u = 1.}
Competing causes model is the most commonly assumed model, but often people do not realise that they make such an assumption. The model says that the exposure of interest and other causes of death are constantly competing, and that the impact of the exposure is relative to the other competing causes. In other words, the hazard rate in the exposed population is h1(t) = RR h0(t). Hazard rates are functions of time, and may become very high in very old populations. In any case, the proportional impact of the exposure stays constant.
In the case where competing causes model and independence assumtption applies, lower end of EF range is often close to the excess fraction XF. (But it can be lower, as the next example with a skewed exponential distribution demonstrates.)
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle EF_l = XF = \frac{RR - 1}{RR}.}
Exponential survival model assumes that the hazard rate is constant and the deaths occur following the exponential distribution. Although this model has very elegant formulas, it is typically far from plausible, as the differences in survival may be very large. E.g. with average life expectancy of 70 years, 10 % of the population would die before 8 years of age, while 10 % would live beyond 160 years. In situations where exponential survival model can be used, the lower bound of EF (equation 9[10]) is as low as
Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle EF_l = \frac{RR - 1}{RR^{RR/(RR-1)}}.}
For an illustration of the behaviour of EF, see the code "Test different etiologic fractions" in the Answer. Also the true etiologic fraction is calculated for this simulated population, because in the simulation we assume that we know exactly what happens to each individual in each scenario and how much their lengths of lives change. By testing with several inputs, we can see the following pattern (table).
Survival distribution | Scenario | Excess fraction XF | True etiologic fraction | EF_low from Eq 9 | EF_low from Eq 11 |
---|---|---|---|---|---|
Uniform | Competing causes, minimize EF[4] | 0.17 | 0.17 | 0.17 | 0.07 |
Competing causes, preserve rank order[5] | 0.17 | 1.00 | 0.17 | 0.07 | |
Exponential | Competing causes, minimize EF[6] | 0.17 | 0.07 | 0.07 | 0.07 |
Competing causes, preserve rank order[7] | 0.17 | 1.00 | 0.07 | 0.07 |
As we can see from the table, true etiologic fraction can vary substantially - in theory. High values assume that most people are affected by a small life loss. This might be true with causes that worsen general health, thus killing the person a bit earlier than what would have happened if the person had been in a hardier state.
When we compare equations 9 and 11, we can see that the former never performs worse than the latter. This is simply because equation 11 was derived from equation 9 by making an additional assmuption that the survival distribution is exponential. Indeed, in such a case they produce identical values but in other cases equation 11 underestimates EF compared with equation 9. A practical conclusion is that if survival curves for exposed and unexposed groups are available, equation 9 rather than equation 11 should always be used. Even excess fraction is usually a better estimate than an estimate from equation 11, with the exception of exponential survival distribution.
Calculations
⇤--#: . UPDATE AF TO REFLECT THE CURRENT IMPLEMENTATION OF ERF Exposure-response function --Jouni (talk) 05:20, 13 June 2015 (UTC) (type: truth; paradigms: science: attack)
A previous version of code looked at RRs of all exposure agents and summed PAFs up.
Some interesting model runs:
- Population with exponentially distributed lifetimes
- Life loss to a fraction of people across the whole population
- Give all life loss to the people living the longest
Demonstration of hazard fractions, survival, and age at death
- Figure for manuscript Morfeld, Erren, Hammit etc.
See also
- These Wikipedia pages should be updated and made coherent. Also they should distinguish etiological fraction, excess fraction, and attributable fraction and describe their important conceptual differences.
- Health impact assessment
- Jacqueline C. M. Witteman, Ralph B. D'Agostino, Theo Stijnen, William B. Kannel, Janet C. Cobb, Maria A. J. de Ridder, Albert Hofman and James M. Robins. G-estimation of Causal Effects: Isolated Systolic Hypertension and Cardiovascular Death in the Framingham Heart Study. Am. J. Epidemiol. (1998) 148 (4): 390-401. [8]
References
- ↑ 1.0 1.1 1.2 1.3 1.4 Rockhill B, Newman B, Weinberg C. use and misuse of population attributable fractions. American Journal of Public Health 1998: 88 (1) 15-19.[1]
- ↑ Kenneth J. Rothman, Sander Greenland, Timothy L. Lash: Modern Epidemiology. Lippincott Williams & Wilkins, 2008. 758 pages.
- ↑ 3.0 3.1 3.2 Darrow LA, Steenland NK. Confounding and bias in the attributable fraction. Epidemiology 2011: 22 (1): 53-58. [2] doi:10.1097/EDE.0b013e3181fce49b
- ↑ Walter SD. The estimation and interpretation of attributable fraction in health research. Biometrics. 1976;32:829-849.
- ↑ 5.0 5.1 5.2 Kleinbaum DG, Kupper LL, Morgenstem H. Epidemiologic Research. Belmont, Calif: Lifetime Learning Publications; 1982:163.
- ↑ 6.0 6.1 Miettinen 0. Proportion of disease caused or prevented by a given exposure, trait, or intervention. Am JEpidemiol. 1974;99:325-332.
- ↑ 7.0 7.1 Schlesselman JJ. Case-Control Studies: Design, Conduct, Analysis. New York, NY: Oxford University Press Inc; 1982.
- ↑ Bruzzi P, Green SB, Byar DP, Brinton LA, Schairer C. Estimating the population attributable risk for multiple risk factors using case-control data. Am J Epidemiol. 1985; 122: 904-914.
- ↑ WHO: Health statistics and health information systems. [3]. Accessed 16 Nov 2013.
- ↑ 10.0 10.1 10.2 10.3 Robins JM, Greenland S. Estimability and estimation of excess and etiologic fractions. Statistics in Medicine 1989 (8) 845-859.