Skip to content

Commit d894c8e

Browse files
authored
Merge pull request #332 from USEPA/324-remove-sig-fig-transform-in-mc3-and-sc1
324 removed lines from mc3 and sc1 that round concs
2 parents 61521b0 + 2586555 commit d894c8e

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

Diff for: R/mc3.R

-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ mc3 <- function(ac, wr = FALSE) {
5555

5656
stime <- Sys.time()
5757

58-
## Force all concentrations to 1 significant figure
59-
dat[ , conc := signif(conc, 1)]
60-
6158
## Load aeid mapping information.
6259
aeid_info <- tcplLoadAeid("acid", ac)[ , list(acid, aeid)]
6360
setkey(aeid_info, acid)

Diff for: R/sc1.R

-4
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,6 @@ sc1 <- function(ac, wr = FALSE) {
5959
## Remove data with well quality of 0
6060
dat <- dat[wllq == 1]
6161

62-
## Force all concentrations to 1 significant figure
63-
dat[ , conc := signif(conc, 1)]
64-
65-
6662
## Load aeid mapping information.
6763
aeid_info <- tcplLoadAeid("acid", ac)[ , list(acid, aeid)]
6864
setkey(aeid_info, acid)

0 commit comments

Comments
 (0)