diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2020-05-11 17:47:36 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2020-05-11 17:47:36 +0200 |
commit | feca0008dcf662bba5c728096c4e63b923b8979b (patch) | |
tree | 6d9ed97ce721eeb8be86587c4005bc8d38c4f036 | |
parent | 28d3fe0f0ad1f685d4771353cdd12bdd551b7fea (diff) |
Release to CRANv0.9.50.1
-rw-r--r-- | .Rbuildignore | 1 | ||||
-rw-r--r-- | CRAN-RELEASE | 2 | ||||
-rw-r--r-- | test.log | 6 | ||||
-rw-r--r-- | tests/testthat/test_analytical.R | 3 |
4 files changed, 8 insertions, 4 deletions
diff --git a/.Rbuildignore b/.Rbuildignore index 1434847a..68093922 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -30,3 +30,4 @@ ^docs$ ^_pkgdown\.yml$ ^\.travis\.yml$ +^CRAN-RELEASE$ diff --git a/CRAN-RELEASE b/CRAN-RELEASE new file mode 100644 index 00000000..8f0dde40 --- /dev/null +++ b/CRAN-RELEASE @@ -0,0 +1,2 @@ +This package was submitted to CRAN on 2020-05-11. +Once it is accepted, delete this file and tag the release (commit 28d3fe0f0a). @@ -8,13 +8,13 @@ Testing mkin ✔ | 5 | Analytical solutions for coupled models [3.0 s] ✔ | 5 | Calculation of Akaike weights ✔ | 10 | Confidence intervals and p-values [1.0 s] -✔ | 14 | Error model fitting [3.8 s] +✔ | 14 | Error model fitting [3.9 s] ✔ | 4 | Test fitting the decline of metabolites from their maximum [0.2 s] ✔ | 1 | Fitting the logistic model [0.2 s] ✔ | 1 | Test dataset class mkinds used in gmkin ✔ | 12 | Special cases of mkinfit calls [0.6 s] ✔ | 8 | mkinmod model generation and printing [0.2 s] -✔ | 3 | Model predictions with mkinpredict [0.3 s] +✔ | 3 | Model predictions with mkinpredict [0.4 s] ✔ | 16 | Evaluations according to 2015 NAFTA guidance [1.4 s] ✔ | 9 | Nonlinear mixed-effects models [7.5 s] ✔ | 4 | Calculation of maximum time weighted average concentrations (TWAs) [2.4 s] @@ -24,7 +24,7 @@ Testing mkin ✔ | 4 | Residuals extracted from mkinfit models ✔ | 2 | Complex test case from Schaefer et al. (2007) Piacenza paper [1.4 s] ✔ | 1 | Summaries of old mkinfit objects -✔ | 4 | Results for synthetic data established in expertise for UBA (Ranke 2014) [2.4 s] +✔ | 4 | Results for synthetic data established in expertise for UBA (Ranke 2014) [2.3 s] ✔ | 9 | Hypothesis tests [6.5 s] ══ Results ═════════════════════════════════════════════════════════════════════ diff --git a/tests/testthat/test_analytical.R b/tests/testthat/test_analytical.R index 578258d3..6b1b8bb1 100644 --- a/tests/testthat/test_analytical.R +++ b/tests/testthat/test_analytical.R @@ -53,6 +53,7 @@ test_that("The analytical solution for DFOP-SFO are correct", { solution_type = "deSolve", quiet = TRUE) expect_equal( parms(f_dfop_sfo_analytical), - parms(f_dfop_sfo_desolve) + parms(f_dfop_sfo_desolve), + tolerance = 5e-6 ) }) |