Title: | Cause-Deleted Life Expectancy Improvement Procedure |
---|---|
Description: | The concept of cause-deleted life expectancy improvement is statistic designed to quantify the increase in life expectancy if a certain cause of death is removed. See Adamic, P. (2015) (<https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2689352>). |
Authors: | Peter Adamic, Alicja Wolny-Dominiak |
Maintainer: | Alicja Wolny-Dominiak <[email protected]> |
License: | GPL-2 |
Version: | 1.0 |
Built: | 2024-12-19 06:36:21 UTC |
Source: | CRAN |
The concept of cause-deleted life expectancy improvement is statistic designed to quantify the increase inlife expectancy if a certain cause of death is removed.
Peter Adamic, Alicja Wolny-Dominiak Maintainer: <[email protected]>
1. Adamic, P. (2015). Life Expectancy Improvement with a Curve Distribution for a cause of death, Australian Journal of Actuarial Practice, 3, 59-70.
2. Adamic, P. (2008). Cause-deleted life expectancy improvement in the presence of
left and right censoring. Belgian Actuarial Bulletin, 8: 17-21.
3. Brown, R.L. (1997). Introduction to the Mathematics of Demography, 3rd ed, Winsted, Connecticut: Actex.
In may circumstances, to increase in life expectancy when a certain cause of death is eliminated is sought, but this is usually done by taking the cause out of consideration fully, which is unrealistic. Here, we incorporate a probability distribution for the cure of the cause over time, to more accurately predict the increase in life expectancy at each age.
cdlei(age, qtau, qhiv, k, d)
cdlei(age, qtau, qhiv, k, d)
age |
age |
qtau |
vector of probabilities of death by all causes at each age |
qhiv |
vector of probabilities of death by HIV at each age |
k |
cure probability parameter |
d |
index |
cdlei |
cause-deleted life expectancy |
qx |
probability of deatch at age x |
px |
probability of survival at age x |
tpx |
probability an x year old survives to age x+t |
sumtpx |
sum of tpx |
Fk |
probability of curve |
pxx |
probability of survival at age x, using cure probability |
tpxx |
probability of sirviving t years after age x, using cure probability |
sumtpxx |
cumulative sum of tpx |
df |
data frame |
Peter Adamic, Alicja Wolny-Dominiak
1. Adamic, P. (2015). Life Expectancy Improvement with a Curve Distribution for a cause of death, Australian Journal of Actuarial Practice, 3, 59-70.
2. Adamic, P. (2008). Cause-deleted life expectancy improvement in the presence of
left and right censoring. Belgian Actuarial Bulletin, 8: 17-21.
3. Brown, R.L. (1997). Introduction to the Mathematics of Demography, 3rd ed, Winsted, Connecticut: Actex.
data(lifeData) res <- cdlei(lifeData$age, lifeData$qtau, lifeData$qhiv, 0.02, 100000) str(res) res$cdlei
data(lifeData) res <- cdlei(lifeData$age, lifeData$qtau, lifeData$qhiv, 0.02, 100000) str(res) res$cdlei
A simple discrete-time function accounting for the probability that HIV will be cured by time t. Assume the curve function begins at age 0.
Fk(age, k)
Fk(age, k)
age |
age of person |
k |
cure probability parameter |
Fk |
curve probability function |
Peter Adamic, Alicja Wolny-Dominiak
1. Adamic, P. (2008). Cause-deleted life expectancy improvement in the presence of
left and right censoring. Belgian Actuarial Bulletin, 8: 17-21.
2. Brown, R.L. (1997). Introduction to the Mathematics of Demography, 3rd ed, Winsted, Connecticut: Actex.
data(lifeData) Fk(lifeData$age, 0.02)
data(lifeData) Fk(lifeData$age, 0.02)
Input data matrix consists of the probabilities of death from all causes, and by HIV only, for ages 0 to 103 (inclusive).
data("lifeData")
data("lifeData")
A data frame with 104 observations on the following 3 variables.
age
a numeric vector
qtau
a numeric vector
qhiv
a numeric vector
Data source: Colorado Department of Public Health and Environment.
data(lifeData) str(lifeData)
data(lifeData) str(lifeData)