-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPCB_Correlations
48 lines (41 loc) · 2.09 KB
/
PCB_Correlations
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#PCBPCB153+168 vs PCB170
cenken(`PCB_153+168`, `PCB_153+168_Cen`, `PCB_170`, PCB_170_Cen)
pdf("PCB153+168vs170_log.pdf", width = 3.5, height = 3.5)
par(mar = c(3,3,1,1))
cenxyplot(`PCB_153+168`, `PCB_153+168_Cen`, `PCB_170`, PCB_170_Cen, xlab="", ylab="", log = "xy", pch = 16, cex.axis = 1.5)
dev.off()
#PCB153+168 vs PCB180+193
cenken(`PCB_153+168`, `PCB_153+168_Cen`, `PCB_180+193`, `PCB_180+193_Cen`)
pdf("PCB153+168vs180_193_log.pdf", width = 3.5, height = 3.5)
par(mar = c(3,3,1,1))
cenxyplot(`PCB_153+168`, `PCB_153+168_Cen`, `PCB_180+193`, `PCB_180+193_Cen`, xlab = "", ylab = "", log = "xy", pch = 16, cex.axis = 1.5)
dev.off()
#PCB153+168 vs PCB187
cenken(`PCB_153+168`, `PCB_153+168_Cen`, `PCB_187`, PCB_187_Cen)
pdf("PCB153+168vs187_log.pdf", width = 3.5, height = 3.5)
par(mar = c(3,3,1,1))
cenxyplot(`PCB_153+168`, `PCB_153+168_Cen`, `PCB_187`, PCB_187_Cen, xlab = "", ylab = "", log = "xy", pch = 16, cex.axis = 1.5)
dev.off()
#PCB170 vs PCB180+193
cenken(`PCB_170`, PCB_170_Cen, `PCB_180+193`, `PCB_180+193_Cen`)
pdf("PCB170vs180_193_log.pdf", width = 3.5, height = 3.5)
par(mar = c(3,3,1,1))
cenxyplot(`PCB_170`, PCB_170_Cen, `PCB_180+193`, `PCB_180+193_Cen`, xlab = "", ylab = "", log = "xy", pch = 16, cex.axis = 1.5)
dev.off()
#PCB170 vs PCB187
cenken(`PCB_170`, `PCB_170_Cen`, `PCB_187`, PCB_187_Cen)
pdf("PCB170vs187_log.pdf", width = 3.5, height = 3.5)
par(mar = c(3,3,1,1))
cenxyplot(`PCB_170`, `PCB_170_Cen`, `PCB_187`, PCB_187_Cen, xlab = "", ylab = "", log = "xy", pch = 16, cex.axis = 1.5)
dev.off()
#PCB180+193 vs PCB187
cenken(`PCB_180+193`, `PCB_180+193_Cen`, `PCB_187`, PCB_187_Cen)
pdf("PCB180_193vs187_log.pdf", width = 3.5, height = 3.5)
par(mar = c(3,3,1,1))
cenxyplot(`PCB_180+193`, `PCB_180+193_Cen`, `PCB_187`, PCB_187_Cen, xlab = "", ylab = "", log = "xy", pch = 16, cex.axis = 1.5)
dev.off()
#COMPARE VALUES OF PCB CONGENERS TO SUMMED PCBs (ng/g for detected congeners)
cenken(`PCB_153+168`, `PCB_153+168_Cen`, `TotalPCB(ng/g)`)
cenken(`PCB_170`, `PCB_170_Cen`, `TotalPCB(ng/g)`)
cenken(`PCB_180+193`, `PCB_180+193_Cen`, `TotalPCB(ng/g)`)
cenken(`PCB_187`, `PCB_187_Cen`, `TotalPCB(ng/g)`)