Lung cancer cases due to radon in Europe
Moderator:Teemu R (see all) |
This page is a stub. You may improve it into a full page. |
Upload data
|
Scope
Mortality due to indoor radon concentrations.
- Spatial: Europe
- Temporal: years 2010-2050
Definition
- Lung cancer cases calculated from radon concentration using <math>cases = impact function * concentration * population</math>. IF taken from HEIMTSA and INTARESE (Darby 2004; Darby 2005).
- The referenced impact function is scaled down in assuming only 4.6% of population is exposed, but we assume all are exposed.
Data
Dependencies
- Radon concentrations in European residences
- Population of Europe
- Lung cancer mortality in Europe (from WHO mortality data)
- ERF of radon exposure on lung cancer mortality (heande:ERFs of several pollutants), impact function on the same page used for code below.
Unit
cases per year
Formula
R code
- This code features R functions described on pages Opasnet Base Connection for R and Operating intelligently with multidimensional arrays in R.
pop <- op_baseGetData("opasnet_base", "Op_en4691", include = 1367, exclude = c(1435, 1436)) countries <- c("Austria", "Belgium", "Bulgaria", "Switzerland", "Cyprus", "Czech Republic", "Germany", "Denmark", "Estonia", "Spain", "Finland", "France", "Greece", "Hungary", "Ireland", "Iceland", "Italy", "Lithuania", "Luxembourg", "Latvia", "Malta", "Netherlands", "Norway", "Poland", "Portugal", "Romania", "Sweden", "Slowenia", "Slovakia", "United Kingdom") conc <- op_baseGetData("opasnet_base", "Op_en4713") levels(pop[,"CountryID"]) <- countries colnames(pop)[4] <- "Country" colnames(pop)[8] <- "Population" pop <- pop[,c(3,4,5,6,7,8)] levels(pop[,"Age"])[1] <- "All Ages" #Fixed to match mortality format concarray <- DataframeToArray(conc) popxconc <- IntArray(pop, concarray[1:1000,,,], "Concentration") k <- rnorm(nrow(popxconc), 0.16, (0.31-0.05)/3.92)*58.2 #RR * background rate lungmortality <- data.frame(popxconc[,c("obs","Country","policy","Year","Age","Rate","Sex")], Result = k * popxconc[, "Concentration"] / 100 * popxconc[, "Population"] / 100000)
Result
{{#opasnet_base_link:Op_en4715}}
Year | ||||
---|---|---|---|---|
Policy | 2010 | 2020 | 2030 | 2050 |
BAU | 42691 (22042-95542) | 51138 (24733-111979) | 57618 (25785-137181) | 62461 (27023-143632) |
All | NA | 53385 (25402-130453) | 68338 (28863-171718) | 81873 (31372-239696) |
Biomass | NA | NA | NA | 81849 (32497-218247) |
Insulation | NA | NA | NA | 80534 (32445-236962) |
Renovation | NA | NA | NA | 94075 (35396-288323) |
Country of observation | Mean | SD |
---|---|---|
Austria | 1105 | 1146 |
Belgium | 857 | 796 |
Bulgaria | 303 | 382 |
Switzerland | 1636 | 2835 |
Cyprus | 10 | 14 |
Germany | 4754 | 4305 |
Denmark | 382 | 408 |
Estonia | 222 | 239 |
Spain | 8245 | 15249 |
Finland | 805 | 792 |
France | 8204 | 12176 |
Greece | 857 | 977 |
Hungary | 1583 | 1985 |
Ireland | 533 | 580 |
Italy | 5035 | 5117 |
Lithuania | 223 | 233 |
Luxembourg | 68 | 64 |
Latvia | 229 | 289 |
Malta | 43 | 50 |
Netherlands | 504 | 338 |
Norway | 566 | 667 |
Poland | 2175 | 1864 |
Portugal | 1183 | 1208 |
Romania | 1233 | 1357 |
Sweden | 1353 | 1475 |
Slovakia | 586 | 661 |
Total | 42691 |
See also
Keywords
References
Related files
<mfanonymousfilelist></mfanonymousfilelist>