Difference between revisions of "POPs in Baltic herring"

From Testiwiki
Jump to: navigation, search
m (Rationale)
m (Answer)
Line 29: Line 29:
 
objects.latest("Op_en2583", "pop_bayes")
 
objects.latest("Op_en2583", "pop_bayes")
  
ggplot(subset(resultsall@output, grepl("PCB", Congener) & grepl("Meanpost", variable)), aes(x = Congener, y = resultsallResult, fill = Congener)) + geom_bar(stat = "identity") +  
+
ggplot(subset(resultsall@output, grepl("PCB", Congener) & grepl("Medianpost", variable)), aes(x = Congener, y = resultsallResult, fill = Congener)) + geom_bar(stat = "identity") +  
   labs(x = "Congener", y = "Concentration (pg/g fat)") + coord_flip() + ggtitle("Mean concentrations of PCB's in Baltic herring")
+
   labs(x = "Congener", y = "Concentration (pg/g fat)") + coord_flip() + ggtitle("Median posterior concentrations of PCB's in Baltic herring")
 
 
ggplot(subset(resultsall@output, grepl("CD", Congener) & grepl("Meanpost", variable)), aes(x = Congener, y = resultsallResult, fill = Congener)) + geom_bar(stat = "identity") +
 
  labs(x = "Congener", y = "Concentration (pg/g fat)") + coord_flip() + ggtitle("Mean concentrations of PCDD/F's in Baltic herring")
 
 
 
ggplot(subset(resultsall@output, grepl("BDE", Congener) & grepl("Meanpost", variable)), aes(x = Congener, y = resultsallResult, fill = Congener)) + geom_bar(stat = "identity") +
 
  labs(x = "Congener", y = "Concentration (pg/g fat)") + coord_flip() + ggtitle("Mean concentrations of BDE's in Baltic herring")
 
 
 
ggplot(subset(teq@output, grepl("Meanpost", variable)), aes(x = Congener, y = Result, fill = Congener)) + geom_bar(stat = "identity") +
 
  labs(x = "Congener", y = "TEQ (pg/g fat)") + coord_flip()  + ggtitle("Mean TEQ of POPs in Baltic herring")
 
 
 
  
 +
ggplot(subset(resultsall@output, grepl("CD", Congener) & grepl("Medianpost", variable)), aes(x = Congener, y = resultsallResult, fill = Congener)) + geom_bar(stat = "identity") +
 +
  labs(x = "Congener", y = "Concentration (pg/g fat)") + coord_flip() + ggtitle("Median posterior concentrations of PCDD/F's in Baltic herring")
  
 +
ggplot(subset(resultsall@output, grepl("BDE", Congener) & grepl("Medianpost", variable)), aes(x = Congener, y = resultsallResult, fill = Congener)) + geom_bar(stat = "identity") +
 +
  labs(x = "Congener", y = "Concentration (pg/g fat)") + coord_flip() + ggtitle("Median posterior concentrations of BDE's in Baltic herring")
  
 +
ggplot(subset(teq@output, grepl("Medianpost", variable)), aes(x = Congener, y = Result, fill = Congener)) + geom_bar(stat = "identity") +
 +
  labs(x = "Congener", y = "TEQ (pg/g fat)") + coord_flip()  + ggtitle("Median posterior TEQ of POPs in Baltic herring")
  
 
</rcode>
 
</rcode>

Revision as of 12:11, 21 June 2016



Question

What are the concentrations of persistent organic pollutants (POPs) in Baltic herring.

Answer

Answer is under work and results are preliminary.

POP concentrations in Baltic sea fish have been measured from samples collected in EU-kalat project. The original data of individual fish samples si accessible through Opasnet base. This data is used here for a Bayesian model to calculate posterior distributions (mean and SD) for each congener. This data is then translated into TEQ to be used for health impact assessment of Baltic herring.

Posterior congener mean concentrations are presented below for each compound group (PCDD/F, PCB, BDE) taken under analysis in EU-kalat.

Error creating thumbnail: Unable to save thumbnail to destination
Error creating thumbnail: Unable to save thumbnail to destination
Error creating thumbnail: Unable to save thumbnail to destination

Based on the mean posterior concentrations of individual congeners, TEQs are calculated for each congener by using TEF values by WHO and plotted below.

Error creating thumbnail: Unable to save thumbnail to destination


+ Show code

Rationale

This model takes in measured congener concentrations of POPs in Baltic herring in northern bart of Baltic sea. Measured data is used for Bayesian model to produce posterior medians and sds for each congener and also to calculate TEQ values. Numerical results are saved as variables to Opasnetbase and result figures are presented above in the Answer section.

+ Show code

See also

References