Exposures in Finland: Difference between revisions
Jump to navigation
Jump to search
(codes improved but answer code has problems with ggplot) |
(code improved) |
||
Line 34: | Line 34: | ||
===Calculations=== | ===Calculations=== | ||
<rcode name="calculations" label="Initiate | ; Note! The ovariables are NOT updated by updating the data table. You have to also re-run this initiation code. | ||
<rcode name="calculations" label="Initiate variables"> | |||
library(OpasnetUtils) | library(OpasnetUtils) | ||
library(xtable) | library(xtable) | ||
data <- tidy(opbase.data("Op_en5918")) | |||
colnames(data)[colnames(data) == "Exposed.fraction"] <- "Exposed.fractionResult" | |||
colnames(data)[colnames(data) == "Exposure"] <- "ExposureResult" | |||
colnames(data)[colnames(data) == "Background.exposure"] <- "Background.ExposureResult" | |||
data | |||
Exposure <- Ovariable( | |||
"Exposure", | |||
data = data[ , !colnames(data) %in% c( | |||
"Exposed.fractionResult", | |||
"Background.ExposureResult" | |||
)], | |||
save = TRUE | |||
) | |||
Exposed.Fraction <- Ovariable( | |||
"Exposed.Fraction", | |||
data = data[ , !colnames(data) %in% c( | |||
"ExposureResult", | |||
"Background.ExposureResult" | |||
)], | |||
save = TRUE | |||
) | |||
Background.Exposure <- Ovariable( | |||
"Background.Exposure", | |||
data = data[ , !colnames(data) %in% c( | |||
"Exposed.fractionResult", | |||
"ExposureResult" | |||
)], | |||
save = TRUE | |||
) | |||
cat(" | cat("Ovariables Exposure, Exposed.Fraction, and Background.Exposure saved. page_indent = Op_en5918, code_name = calculations\n") | ||
print(xtable(EvalOutput( | print(xtable(EvalOutput(Exposure, N = 1)@output), type = 'html') | ||
print(xtable(EvalOutput(Exposed.Fraction, N = 1)@output), type = 'html') | |||
print(xtable(EvalOutput(Background.Exposure, N = 1)@output), type = 'html') | |||
</rcode> | </rcode> | ||
Line 54: | Line 90: | ||
Part of data from [[:op_fi:Seturi/altistus]] | Part of data from [[:op_fi:Seturi/altistus]] | ||
<t2b index=" | <t2b index="Pollutant,Exposure.route,Unit,Exposure.metric,Group,Age,Observation" | ||
Locations="Exposed.fraction, | Locations="Exposed.fraction,Exposure,Background.exposure,Description" unit="-"> | ||
Indoor radon|Inhalation|Bq /m3||Whole population||1|100 (95 - 105)| 5 (4 - 9)| | Indoor radon|Inhalation|Bq /m3||Whole population||1|100 (95 - 105)| 5 (4 - 9)| | ||
PM2.5|Inhalation|µg /m3||Whole population||1|7 (6 - 8)|3| | PM2.5|Inhalation|µg /m3||Whole population||1|7 (6 - 8)|3| |
Revision as of 08:37, 4 February 2013
Moderator:Nobody (see all) Click here to sign up. |
This page is a stub. You may improve it into a full page. |
Upload data
|
Question
What are typical exposure levels of common pollutants in Finland?
Answer
Rationale
Calculations
- Note! The ovariables are NOT updated by updating the data table. You have to also re-run this initiation code.
Dependencies
Data
Part of data from op_fi:Seturi/altistus
Obs | Pollutant | Exposure.route | Unit | Exposure.metric | Group | Age | Exposed.fraction | Exposure | Background.exposure | Description |
---|---|---|---|---|---|---|---|---|---|---|
1 | Indoor radon | Inhalation | Bq /m3 | Whole population | 1 | 100 (95 - 105) | 5 (4 - 9) | |||
2 | PM2.5 | Inhalation | µg /m3 | Whole population | 1 | 7 (6 - 8) | 3 | |||
3 | Chlorination byproducts | Ingestion | µg /L | Users of chlorinated surface water | 0.44 | 611 (488.8 - 733.2) | 0 |
Formula
See also
Keywords
References
Related files
<mfanonymousfilelist></mfanonymousfilelist>