Health impacts of waterborne microbes: Difference between revisions

From Opasnet
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 121: Line 121:
oprint(TreatedConcentration)
oprint(TreatedConcentration)
</rcode>
</rcode>
The amount of pathogens an average water consumer is exposed to in a day
<rcode name="exposure">
#This is code "Op_en7957/exposure" on page [[Health impacts of waterborne microbes]]
library(OpasnetUtils)
dependencies = data.frame(
Name = c("TreatedConcentration", "RawConsumption"),
Ident = c("Op_en7957/pathconcentration", "Op_en7957/rawconsumption")
)
funktio = function(...){
return(TreatedConcentration * RawConcumption)
}
Exposure <- Ovariable("Exposure", dependencies = dependencies, formula = funktio, save = TRUE)
oprint(Exposure)
</rcode>


== See also ==
== See also ==

Revision as of 06:25, 5 July 2019



Question

What are the health impacts of waterborne microbes in drinking water?

Answer

Rationale

Data

Health impacts of waterborne microbes depends on the following parameters:

Calculations

RCode

Daily cold tap water use of Finns

+ Show code


+ Show code

Concentrations of pathogens in drinking water

+ Show code

The amount of pathogens an average water consumer is exposed to in a day

+ Show code


See also