From ee8c8a53903de1a0f480060900b706022af091b6 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Mon, 17 Apr 2023 21:53:49 +0200 Subject: Post release changes to the docs The cyantraniliprole and dmta pathway vignettes were not working any more with the latest changes in deSolve and mkin. All docs need a rebuild. --- R/hierarchical_kinetics.R | 4 ++- _pkgdown.yml | 4 +-- vignettes/prebuilt/2022_cyan_pathway.rmd | 42 ++++++++++++++++++++++++-------- vignettes/prebuilt/2022_dmta_pathway.rmd | 21 +++++++++++++--- 4 files changed, 54 insertions(+), 17 deletions(-) diff --git a/R/hierarchical_kinetics.R b/R/hierarchical_kinetics.R index ae60d43c..46623356 100644 --- a/R/hierarchical_kinetics.R +++ b/R/hierarchical_kinetics.R @@ -30,7 +30,9 @@ #' #' \dontrun{ #' library(rmarkdown) -#' draft("example_analysis.rmd", template = "hierarchical_kinetics", package = "mkin") +#' # The following is now commented out after the relase of v1.2.3 for the generation +#' # of online docs, as the command creates a directory and opens an editor +#' #draft("example_analysis.rmd", template = "hierarchical_kinetics", package = "mkin") #' } #' #' @export diff --git a/_pkgdown.yml b/_pkgdown.yml index 5c67d88f..6bf7c14a 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -1,8 +1,8 @@ url: https://pkgdown.jrwb.de/mkin development: - mode: devel - version_label: info + mode: release + version_label: default template: bootswatch: spacelab diff --git a/vignettes/prebuilt/2022_cyan_pathway.rmd b/vignettes/prebuilt/2022_cyan_pathway.rmd index df34a6f2..d0b2c889 100644 --- a/vignettes/prebuilt/2022_cyan_pathway.rmd +++ b/vignettes/prebuilt/2022_cyan_pathway.rmd @@ -50,11 +50,19 @@ library(knitr) library(saemix) library(parallel) n_cores <- detectCores() -if (Sys.info()["sysname"] == "Windows") { - cl <- makePSOCKcluster(n_cores) -} else { - cl <- makeForkCluster(n_cores) + +# We need to start a new cluster after defining a compiled model that is +# saved as a DLL to the user directory, therefore we define a function +# This is used again after defining the pathway model +start_cluster <- function(n_cores) { + if (Sys.info()["sysname"] == "Windows") { + ret <- makePSOCKcluster(n_cores) + } else { + ret <- makeForkCluster(n_cores) + } + return(ret) } +cl <- start_cluster(n_cores) ``` \clearpage @@ -135,6 +143,10 @@ illparms(cyan_saem_reduced) anova(cyan_saem_reduced) |> kable(digits = 1) ``` +```{r} +stopCluster(cl) +``` + # Pathway fits ## Evaluations with pathway established previously @@ -178,6 +190,7 @@ cyan_path_1 <- list( JSE76 = mkinsub("SFO"), quiet = TRUE, name = "hs_path_1", dll_dir = "cyan_dlls", overwrite = TRUE) ) +cl_path_1 <- start_cluster(n_cores) ``` To obtain suitable starting values for the NLHM fits, separate pathway fits are performed for all datasets. @@ -187,7 +200,7 @@ f_sep_1_const <- mmkin( cyan_path_1, cyan_ds, error_model = "const", - cluster = cl, + cluster = cl_path_1, quiet = TRUE) status(f_sep_1_const) |> kable() @@ -209,7 +222,7 @@ currently under development. ```{r, f-saem-1, dependson = "f-sep-1"} f_saem_1 <- mhmkin(list(f_sep_1_const, f_sep_1_tc), no_random_effect = illparms(cyan_saem_full), - cluster = cl) + cluster = cl_path_1) ``` ```{r dependson = "f-saem-1"} @@ -253,6 +266,9 @@ at later time points are strongly and systematically underestimated. \clearpage +```{r} +stopCluster(cl_path_1) +``` ## Alternative pathway fits @@ -294,11 +310,13 @@ cyan_path_2 <- list( overwrite = TRUE ) ) + +cl_path_2 <- start_cluster(n_cores) f_sep_2_const <- mmkin( cyan_path_2, cyan_ds, error_model = "const", - cluster = cl, + cluster = cl_path_2, quiet = TRUE) status(f_sep_2_const) |> kable() @@ -319,7 +337,7 @@ Sassafras dataset. ```{r f-saem-2, dependson = c("f-sep-2-const", "f-sep-2-tc")} f_saem_2 <- mhmkin(list(f_sep_2_const, f_sep_2_tc), no_random_effect = illparms(cyan_saem_full[2:4, ]), - cluster = cl) + cluster = cl_path_2) ``` ```{r dependson = "f-saem-2"} @@ -384,11 +402,11 @@ no_ranef[["sforb_path_2", "const"]] <- c("cyan_free_0", "f_JCZ38_qlogis", "f_JSE76_qlogis") no_ranef[["sforb_path_2", "tc"]] <- c("cyan_free_0", "log_k_cyan_free_bound", "f_JCZ38_qlogis", "f_JSE76_qlogis") -clusterExport(cl, "no_ranef") +clusterExport(cl_path_2, "no_ranef") f_saem_3 <- update(f_saem_2, no_random_effect = no_ranef, - cluster = cl) + cluster = cl_path_2) ``` ```{r dependson = "f-saem-3"} @@ -413,6 +431,10 @@ two-component error) are lower than in the previous fits with the alternative pathway, the practical value of these refined evaluations is limited as no confidence intervals are obtained. +```{r} +stopCluster(cl_path_2) +``` + \clearpage # Conclusion diff --git a/vignettes/prebuilt/2022_dmta_pathway.rmd b/vignettes/prebuilt/2022_dmta_pathway.rmd index ff2b527c..f787daf2 100644 --- a/vignettes/prebuilt/2022_dmta_pathway.rmd +++ b/vignettes/prebuilt/2022_dmta_pathway.rmd @@ -45,10 +45,17 @@ library(knitr) library(saemix) library(parallel) n_cores <- detectCores() -if (Sys.info()["sysname"] == "Windows") { - cl <- makePSOCKcluster(n_cores) -} else { - cl <- makeForkCluster(n_cores) + +# We need to start a new cluster after defining a compiled model that is +# saved as a DLL to the user directory, therefore we define a function +# This is used again after defining the pathway model +start_cluster <- function(n_cores) { + if (Sys.info()["sysname"] == "Windows") { + ret <- makePSOCKcluster(n_cores) + } else { + ret <- makeForkCluster(n_cores) + } + return(ret) } ``` @@ -163,6 +170,8 @@ m_hs_path_1 <- mkinmod( unload = TRUE, overwrite = TRUE, quiet = TRUE ) +cl <- start_cluster(n_cores) + deg_mods_1 <- list( sfo_path_1 = m_sfo_path_1, fomc_path_1 = m_fomc_path_1, @@ -332,6 +341,10 @@ plot(saem_sforb_path_1_tc_reduced) Plots of the remaining fits and listings for all successful fits are shown in the Appendix. +```{r} +stopCluster(cl) +``` + # Conclusions -- cgit v1.2.1 From ad0efc2d16a84c674307ad2df9d44153b44a9cf8 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 20 Apr 2023 19:51:37 +0200 Subject: Small changes to the multistart vignette - Fix legend positions and y axis scaling - Include two more variants in the model comparison at the end, and fix the logic of the discussion --- vignettes/web_only/multistart.rmd | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/vignettes/web_only/multistart.rmd b/vignettes/web_only/multistart.rmd index 27a8a96a..2a9b3599 100644 --- a/vignettes/web_only/multistart.rmd +++ b/vignettes/web_only/multistart.rmd @@ -1,7 +1,7 @@ --- title: Short demo of the multistart method author: Johannes Ranke -date: Last change 26 September 2022 (rebuilt `r Sys.Date()`) +date: Last change 20 April 2023 (rebuilt `r Sys.Date()`) output: html_document vignette: > @@ -38,9 +38,9 @@ function tells us that the confidence interval for the standard deviation of 'log_k2' includes zero. We check this assessment using multiple runs with different starting values. -```{r} +```{r, warnings = FALSE} f_saem_full_multi <- multistart(f_saem_full, n = 16, cores = 16) -parplot(f_saem_full_multi) +parplot(f_saem_full_multi, lpos = "topleft") ``` This confirms that the variance of k2 is the most problematic parameter, so we @@ -51,7 +51,7 @@ for k2. f_saem_reduced <- update(f_saem_full, no_random_effect = "log_k2") illparms(f_saem_reduced) f_saem_reduced_multi <- multistart(f_saem_reduced, n = 16, cores = 16) -parplot(f_saem_reduced_multi, lpos = "topright") +parplot(f_saem_reduced_multi, lpos = "topright", ylim = c(0.5, 2)) ``` The results confirm that all remaining parameters can be determined with sufficient @@ -63,20 +63,15 @@ We can also analyse the log-likelihoods obtained in the multiple runs: llhist(f_saem_reduced_multi) ``` -The parameter histograms can be further improved by excluding the result with -the low likelihood. - -```{r} -parplot(f_saem_reduced_multi, lpos = "topright", llmin = -326, ylim = c(0.5, 2)) -``` - -We can use the `anova` method to compare the models, including a likelihood ratio -test if the models are nested. +We can use the `anova` method to compare the models. ```{r} -anova(f_saem_full, best(f_saem_reduced_multi), test = TRUE) +anova(f_saem_full, best(f_saem_full_multi), + f_saem_reduced, best(f_saem_reduced_multi)) ``` -While AIC and BIC are lower for the reduced model, the likelihood ratio test -does not indicate a significant difference between the fits. +The reduced model gives the lowest information criteria and similar +likelihoods as the best variant of the full model. The multistart method +leads to a much lower improvement of the likelihood for the reduced model, +indicating that it converges faster. -- cgit v1.2.1 From 9ae42bd20bc2543a94cf1581ba9820c2f9e3afbd Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 20 Apr 2023 19:53:28 +0200 Subject: Fix and rebuild documentation, see NEWS I had to fix the two pathway vignettes, as they did not work with the released version any more. So they and the multistart vignette which got some small fixes as well were rebuilt. Complete rebuild of the online docs with the released version. The documentation of the 'hierarchial_kinetics' format had to be fixed as well. --- DESCRIPTION | 4 +- NEWS.md | 4 + docs/404.html | 39 +- docs/articles/FOCUS_D.html | 95 +- docs/articles/FOCUS_D_files/figure-html/plot-1.png | Bin 79834 -> 80361 bytes .../FOCUS_D_files/figure-html/plot_2-1.png | Bin 24334 -> 25051 bytes docs/articles/FOCUS_L.html | 256 +- .../figure-html/unnamed-chunk-10-1.png | Bin 42478 -> 42972 bytes .../figure-html/unnamed-chunk-12-1.png | Bin 83170 -> 83736 bytes .../figure-html/unnamed-chunk-13-1.png | Bin 33165 -> 33606 bytes .../figure-html/unnamed-chunk-15-1.png | Bin 58691 -> 58683 bytes .../figure-html/unnamed-chunk-4-1.png | Bin 35677 -> 36066 bytes .../figure-html/unnamed-chunk-5-1.png | Bin 22137 -> 22386 bytes .../figure-html/unnamed-chunk-6-1.png | Bin 36101 -> 36606 bytes .../figure-html/unnamed-chunk-8-1.png | Bin 41430 -> 41775 bytes .../figure-html/unnamed-chunk-9-1.png | Bin 40780 -> 41403 bytes docs/articles/index.html | 41 +- docs/articles/mkin.html | 316 +- .../mkin_files/figure-html/unnamed-chunk-2-1.png | Bin 90167 -> 91107 bytes docs/articles/prebuilt/2022_cyan_pathway.html | 5657 ++++++++++++++++++++ .../figure-html/unnamed-chunk-13-1.png | Bin 0 -> 363943 bytes .../figure-html/unnamed-chunk-14-1.png | Bin 0 -> 365867 bytes .../figure-html/unnamed-chunk-15-1.png | Bin 0 -> 363662 bytes .../figure-html/unnamed-chunk-20-1.png | Bin 0 -> 378667 bytes .../figure-html/unnamed-chunk-21-1.png | Bin 0 -> 372548 bytes .../figure-html/unnamed-chunk-22-1.png | Bin 0 -> 373913 bytes .../figure-html/unnamed-chunk-7-1.png | Bin 0 -> 373737 bytes .../figure-html/unnamed-chunk-8-1.png | Bin 0 -> 373913 bytes docs/articles/prebuilt/2022_dmta_parent.html | 2223 ++++++++ .../figure-html/convergence-saem-dfop-const-1.png | Bin 0 -> 130847 bytes .../figure-html/convergence-saem-dfop-tc-1.png | Bin 0 -> 116026 bytes .../convergence-saem-dfop-tc-no-ranef-k2-1.png | Bin 0 -> 128564 bytes .../figure-html/convergence-saem-fomc-const-1.png | Bin 0 -> 101690 bytes .../figure-html/convergence-saem-fomc-tc-1.png | Bin 0 -> 97397 bytes .../figure-html/convergence-saem-hs-const-1.png | Bin 0 -> 132456 bytes .../figure-html/convergence-saem-hs-tc-1.png | Bin 0 -> 102390 bytes .../figure-html/convergence-saem-sfo-const-1.png | Bin 0 -> 76259 bytes .../figure-html/convergence-saem-sfo-tc-1.png | Bin 0 -> 64271 bytes .../figure-html/multistart-full-par-1.png | Bin 0 -> 72048 bytes .../figure-html/multistart-reduced-par-1.png | Bin 0 -> 66652 bytes .../multistart-reduced-par-llquant-1.png | Bin 0 -> 59486 bytes .../plot-saem-dfop-tc-no-ranef-k2-1.png | Bin 0 -> 158323 bytes docs/articles/prebuilt/2022_dmta_pathway.html | 2053 +++++++ .../saem-sforb-path-1-tc-reduced-convergence-1.png | Bin 0 -> 160921 bytes .../figure-html/unnamed-chunk-2-1.png | Bin 0 -> 108560 bytes .../figure-html/unnamed-chunk-3-1.png | Bin 0 -> 403164 bytes .../figure-html/unnamed-chunk-4-1.png | Bin 0 -> 403636 bytes .../figure-html/unnamed-chunk-6-1.png | Bin 0 -> 393985 bytes .../figure-html/unnamed-chunk-7-1.png | Bin 0 -> 400319 bytes .../figure-html/unnamed-chunk-8-1.png | Bin 0 -> 403164 bytes docs/articles/twa.html | 114 +- docs/articles/web_only/FOCUS_Z.html | 176 +- .../figure-html/FOCUS_2006_Z_fits_1-1.png | Bin 66689 -> 67444 bytes .../figure-html/FOCUS_2006_Z_fits_10-1.png | Bin 105896 -> 107009 bytes .../figure-html/FOCUS_2006_Z_fits_11-1.png | Bin 104793 -> 106095 bytes .../figure-html/FOCUS_2006_Z_fits_11a-1.png | Bin 75230 -> 76831 bytes .../figure-html/FOCUS_2006_Z_fits_11b-1.png | Bin 36314 -> 37495 bytes .../figure-html/FOCUS_2006_Z_fits_2-1.png | Bin 66689 -> 67444 bytes .../figure-html/FOCUS_2006_Z_fits_3-1.png | Bin 66448 -> 67259 bytes .../figure-html/FOCUS_2006_Z_fits_5-1.png | Bin 80373 -> 81750 bytes .../figure-html/FOCUS_2006_Z_fits_6-1.png | Bin 105210 -> 106404 bytes .../figure-html/FOCUS_2006_Z_fits_7-1.png | Bin 104538 -> 105359 bytes .../figure-html/FOCUS_2006_Z_fits_9-1.png | Bin 88801 -> 89119 bytes docs/articles/web_only/NAFTA_examples.html | 184 +- .../NAFTA_examples_files/figure-html/p10-1.png | Bin 79758 -> 81540 bytes .../NAFTA_examples_files/figure-html/p11-1.png | Bin 76315 -> 77600 bytes .../NAFTA_examples_files/figure-html/p12a-1.png | Bin 81697 -> 83512 bytes .../NAFTA_examples_files/figure-html/p12b-1.png | Bin 70800 -> 71409 bytes .../NAFTA_examples_files/figure-html/p13-1.png | Bin 78121 -> 78613 bytes .../NAFTA_examples_files/figure-html/p14-1.png | Bin 80656 -> 81557 bytes .../NAFTA_examples_files/figure-html/p15a-1.png | Bin 76925 -> 77571 bytes .../NAFTA_examples_files/figure-html/p15b-1.png | Bin 78968 -> 79748 bytes .../NAFTA_examples_files/figure-html/p16-1.png | Bin 93950 -> 94540 bytes .../NAFTA_examples_files/figure-html/p5a-1.png | Bin 82665 -> 83061 bytes .../NAFTA_examples_files/figure-html/p5b-1.png | Bin 80721 -> 81186 bytes .../NAFTA_examples_files/figure-html/p6-1.png | Bin 83052 -> 83142 bytes .../NAFTA_examples_files/figure-html/p7-1.png | Bin 102568 -> 102935 bytes .../NAFTA_examples_files/figure-html/p8-1.png | Bin 92407 -> 93632 bytes .../NAFTA_examples_files/figure-html/p9a-1.png | Bin 78605 -> 78782 bytes .../NAFTA_examples_files/figure-html/p9b-1.png | Bin 76240 -> 76883 bytes docs/articles/web_only/benchmarks.html | 231 +- docs/articles/web_only/compiled_models.html | 119 +- docs/articles/web_only/dimethenamid_2018.html | 356 +- .../figure-html/f_parent_mkin_dfop_const-1.png | Bin 58608 -> 57786 bytes .../f_parent_mkin_dfop_const_test-1.png | Bin 58777 -> 57786 bytes .../figure-html/f_parent_mkin_dfop_tc_test-1.png | Bin 60062 -> 59396 bytes .../figure-html/f_parent_mkin_sfo_const-1.png | Bin 56694 -> 55982 bytes .../figure-html/f_parent_saemix_sfo_tc-1.png | Bin 28655 -> 28538 bytes .../figure-html/plot_parent_nlme-1.png | Bin 59194 -> 59192 bytes docs/articles/web_only/multistart.html | 94 +- .../figure-html/unnamed-chunk-3-1.png | Bin 60747 -> 66934 bytes .../figure-html/unnamed-chunk-4-1.png | Bin 58448 -> 53020 bytes .../figure-html/unnamed-chunk-5-1.png | Bin 21847 -> 22355 bytes .../figure-html/unnamed-chunk-6-1.png | Bin 50597 -> 53020 bytes docs/articles/web_only/saem_benchmarks.html | 285 +- docs/authors.html | 43 +- docs/index.html | 101 +- docs/news/index.html | 111 +- docs/pkgdown.yml | 9 +- docs/reference/AIC.mmkin.html | 35 +- docs/reference/CAKE_export.html | 35 +- docs/reference/D24_2014.html | 35 +- docs/reference/DFOP.solution-1.png | Bin 31230 -> 31964 bytes docs/reference/DFOP.solution.html | 35 +- docs/reference/Extract.mmkin.html | 35 +- docs/reference/FOCUS_2006_DFOP_ref_A_to_B.html | 35 +- docs/reference/FOCUS_2006_FOMC_ref_A_to_F.html | 35 +- docs/reference/FOCUS_2006_HS_ref_A_to_F.html | 35 +- docs/reference/FOCUS_2006_SFO_ref_A_to_F.html | 35 +- docs/reference/FOCUS_2006_datasets.html | 35 +- docs/reference/FOMC.solution-1.png | Bin 29016 -> 29520 bytes docs/reference/FOMC.solution.html | 35 +- docs/reference/HS.solution-1.png | Bin 29376 -> 29572 bytes docs/reference/HS.solution.html | 35 +- docs/reference/IORE.solution-1.png | Bin 30069 -> 30800 bytes docs/reference/IORE.solution.html | 37 +- docs/reference/NAFTA_SOP_2015-1.png | Bin 63022 -> 63875 bytes docs/reference/NAFTA_SOP_2015.html | 35 +- docs/reference/NAFTA_SOP_Attachment-1.png | Bin 64762 -> 65176 bytes docs/reference/NAFTA_SOP_Attachment.html | 35 +- docs/reference/Rplot001.png | Bin 22432 -> 13993 bytes docs/reference/Rplot002.png | Bin 16953 -> 13470 bytes docs/reference/Rplot003.png | Bin 49894 -> 49926 bytes docs/reference/Rplot004.png | Bin 59077 -> 59002 bytes docs/reference/Rplot005.png | Bin 19451 -> 20145 bytes docs/reference/Rplot006.png | Bin 24295 -> 24065 bytes docs/reference/Rplot007.png | Bin 25204 -> 25138 bytes docs/reference/SFO.solution-1.png | Bin 29375 -> 29614 bytes docs/reference/SFO.solution.html | 35 +- docs/reference/SFORB.solution-1.png | Bin 31566 -> 31673 bytes docs/reference/SFORB.solution.html | 35 +- docs/reference/add_err-1.png | Bin 110047 -> 109481 bytes docs/reference/add_err-2.png | Bin 63716 -> 64251 bytes docs/reference/add_err-3.png | Bin 59458 -> 59260 bytes docs/reference/add_err.html | 35 +- docs/reference/anova.saem.mmkin.html | 35 +- docs/reference/aw.html | 35 +- docs/reference/confint.mkinfit.html | 39 +- docs/reference/create_deg_func.html | 43 +- docs/reference/dimethenamid_2018-1.png | Bin 251312 -> 253269 bytes docs/reference/dimethenamid_2018.html | 85 +- docs/reference/ds_mixed-1.png | Bin 219939 -> 219137 bytes docs/reference/ds_mixed.html | 35 +- docs/reference/endpoints.html | 48 +- docs/reference/experimental_data_for_UBA-1.png | Bin 102904 -> 103470 bytes docs/reference/experimental_data_for_UBA.html | 35 +- docs/reference/f_time_norm_focus.html | 35 +- docs/reference/focus_soil_moisture.html | 35 +- docs/reference/get_deg_func.html | 35 +- docs/reference/hierarchical_kinetics.html | 197 + docs/reference/illparms.html | 50 +- docs/reference/ilr.html | 35 +- docs/reference/index.html | 45 +- docs/reference/intervals.saem.mmkin.html | 35 +- docs/reference/llhist.html | 35 +- docs/reference/loftest-1.png | Bin 40003 -> 40983 bytes docs/reference/loftest-2.png | Bin 39622 -> 40501 bytes docs/reference/loftest-3.png | Bin 76871 -> 78360 bytes docs/reference/loftest-4.png | Bin 74700 -> 75839 bytes docs/reference/loftest-5.png | Bin 73212 -> 74677 bytes docs/reference/loftest.html | 35 +- docs/reference/logLik.mkinfit.html | 35 +- docs/reference/logLik.saem.mmkin.html | 35 +- docs/reference/logistic.solution-1.png | Bin 80362 -> 81527 bytes docs/reference/logistic.solution-2.png | Bin 42071 -> 44069 bytes docs/reference/logistic.solution.html | 35 +- docs/reference/lrtest.mkinfit.html | 35 +- docs/reference/max_twa_parent.html | 35 +- docs/reference/mccall81_245T-1.png | Bin 62692 -> 62888 bytes docs/reference/mccall81_245T.html | 35 +- docs/reference/mean_degparms.html | 35 +- docs/reference/mhmkin-1.png | Bin 0 -> 53533 bytes docs/reference/mhmkin-2.png | Bin 0 -> 112676 bytes docs/reference/mhmkin.html | 138 +- docs/reference/mixed-1.png | Bin 215088 -> 215795 bytes docs/reference/mixed.html | 35 +- docs/reference/mkin_long_to_wide.html | 35 +- docs/reference/mkin_wide_to_long.html | 35 +- docs/reference/mkinds.html | 35 +- docs/reference/mkindsg.html | 35 +- docs/reference/mkinerrmin.html | 35 +- docs/reference/mkinerrplot-1.png | Bin 41273 -> 41525 bytes docs/reference/mkinerrplot.html | 35 +- docs/reference/mkinfit-1.png | Bin 66250 -> 65332 bytes docs/reference/mkinfit.html | 61 +- docs/reference/mkinmod.html | 48 +- docs/reference/mkinparplot-1.png | Bin 25998 -> 26970 bytes docs/reference/mkinparplot.html | 35 +- docs/reference/mkinplot.html | 35 +- docs/reference/mkinpredict.html | 84 +- docs/reference/mkinresplot-1.png | Bin 23910 -> 23996 bytes docs/reference/mkinresplot.html | 35 +- docs/reference/mmkin-1.png | Bin 111900 -> 111798 bytes docs/reference/mmkin-2.png | Bin 108747 -> 108900 bytes docs/reference/mmkin-3.png | Bin 96798 -> 97013 bytes docs/reference/mmkin-4.png | Bin 67454 -> 67638 bytes docs/reference/mmkin-5.png | Bin 65333 -> 65329 bytes docs/reference/mmkin.html | 61 +- docs/reference/multistart-1.png | Bin 61330 -> 66388 bytes docs/reference/multistart.html | 38 +- docs/reference/nafta-1.png | Bin 63022 -> 63875 bytes docs/reference/nafta.html | 35 +- docs/reference/nlme-1.png | Bin 67988 -> 78105 bytes docs/reference/nlme-2.png | Bin 91395 -> 90383 bytes docs/reference/nlme.html | 43 +- docs/reference/nlme.mmkin-1.png | Bin 124053 -> 123640 bytes docs/reference/nlme.mmkin-2.png | Bin 168550 -> 169385 bytes docs/reference/nlme.mmkin-3.png | Bin 172051 -> 173484 bytes docs/reference/nlme.mmkin.html | 53 +- docs/reference/nobs.mkinfit.html | 35 +- docs/reference/parms.html | 54 +- docs/reference/parplot.html | 44 +- docs/reference/plot.mixed.mmkin-1.png | Bin 85770 -> 86941 bytes docs/reference/plot.mixed.mmkin-2.png | Bin 173322 -> 174715 bytes docs/reference/plot.mixed.mmkin-3.png | Bin 172513 -> 173537 bytes docs/reference/plot.mixed.mmkin-4.png | Bin 175586 -> 176615 bytes docs/reference/plot.mixed.mmkin.html | 64 +- docs/reference/plot.mkinfit-1.png | Bin 53304 -> 53895 bytes docs/reference/plot.mkinfit-2.png | Bin 73194 -> 74714 bytes docs/reference/plot.mkinfit-3.png | Bin 68138 -> 69642 bytes docs/reference/plot.mkinfit-4.png | Bin 72694 -> 73698 bytes docs/reference/plot.mkinfit-5.png | Bin 67141 -> 66266 bytes docs/reference/plot.mkinfit-6.png | Bin 72904 -> 72332 bytes docs/reference/plot.mkinfit-7.png | Bin 74323 -> 73424 bytes docs/reference/plot.mkinfit.html | 35 +- docs/reference/plot.mmkin-1.png | Bin 49747 -> 49887 bytes docs/reference/plot.mmkin-2.png | Bin 50033 -> 51114 bytes docs/reference/plot.mmkin-3.png | Bin 46365 -> 47091 bytes docs/reference/plot.mmkin-4.png | Bin 33401 -> 33494 bytes docs/reference/plot.mmkin-5.png | Bin 58203 -> 58989 bytes docs/reference/plot.mmkin.html | 35 +- docs/reference/plot.nafta.html | 35 +- docs/reference/read_spreadsheet.html | 35 +- docs/reference/reexports.html | 35 +- docs/reference/residuals.mkinfit.html | 35 +- docs/reference/saem-1.png | Bin 53991 -> 55172 bytes docs/reference/saem-2.png | Bin 49254 -> 49938 bytes docs/reference/saem-3.png | Bin 127024 -> 127425 bytes docs/reference/saem-4.png | Bin 173266 -> 174283 bytes docs/reference/saem.html | 99 +- docs/reference/schaefer07_complex_case-1.png | Bin 67140 -> 67796 bytes docs/reference/schaefer07_complex_case.html | 35 +- docs/reference/set_nd_nq.html | 35 +- docs/reference/sigma_twocomp-1.png | Bin 43780 -> 44931 bytes docs/reference/sigma_twocomp.html | 35 +- docs/reference/status.html | 35 +- docs/reference/summary.mkinfit.html | 45 +- docs/reference/summary.mmkin.html | 37 +- docs/reference/summary.nlme.mmkin.html | 60 +- docs/reference/summary.saem.mmkin.html | 564 +- docs/reference/summary_listing.html | 164 + docs/reference/synthetic_data_for_UBA_2014-1.png | Bin 67454 -> 67638 bytes docs/reference/synthetic_data_for_UBA_2014.html | 45 +- docs/reference/test_data_from_UBA_2014-1.png | Bin 57306 -> 56257 bytes docs/reference/test_data_from_UBA_2014-2.png | Bin 72597 -> 73864 bytes docs/reference/test_data_from_UBA_2014.html | 35 +- docs/reference/transform_odeparms.html | 35 +- docs/reference/update.mkinfit-1.png | Bin 42522 -> 44071 bytes docs/reference/update.mkinfit-2.png | Bin 43527 -> 43998 bytes docs/reference/update.mkinfit.html | 35 +- docs/sitemap.xml | 15 + man/hierarchical_kinetics.Rd | 4 +- vignettes/prebuilt/2022_cyan_pathway.pdf | Bin 662810 -> 680647 bytes vignettes/prebuilt/2022_cyan_pathway.rmd | 3 +- vignettes/prebuilt/2022_dmta_pathway.pdf | Bin 607514 -> 607671 bytes vignettes/prebuilt/2022_dmta_pathway.rmd | 3 +- vignettes/web_only/mkin_benchmarks.rda | Bin 1858 -> 1864 bytes vignettes/web_only/multistart.html | 76 +- vignettes/web_only/saem_benchmarks.rda | Bin 769 -> 772 bytes 269 files changed, 15174 insertions(+), 1784 deletions(-) create mode 100644 docs/articles/prebuilt/2022_cyan_pathway.html create mode 100644 docs/articles/prebuilt/2022_cyan_pathway_files/figure-html/unnamed-chunk-13-1.png create mode 100644 docs/articles/prebuilt/2022_cyan_pathway_files/figure-html/unnamed-chunk-14-1.png create mode 100644 docs/articles/prebuilt/2022_cyan_pathway_files/figure-html/unnamed-chunk-15-1.png create mode 100644 docs/articles/prebuilt/2022_cyan_pathway_files/figure-html/unnamed-chunk-20-1.png create mode 100644 docs/articles/prebuilt/2022_cyan_pathway_files/figure-html/unnamed-chunk-21-1.png create mode 100644 docs/articles/prebuilt/2022_cyan_pathway_files/figure-html/unnamed-chunk-22-1.png create mode 100644 docs/articles/prebuilt/2022_cyan_pathway_files/figure-html/unnamed-chunk-7-1.png create mode 100644 docs/articles/prebuilt/2022_cyan_pathway_files/figure-html/unnamed-chunk-8-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent.html create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/convergence-saem-dfop-const-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/convergence-saem-dfop-tc-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/convergence-saem-dfop-tc-no-ranef-k2-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/convergence-saem-fomc-const-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/convergence-saem-fomc-tc-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/convergence-saem-hs-const-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/convergence-saem-hs-tc-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/convergence-saem-sfo-const-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/convergence-saem-sfo-tc-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/multistart-full-par-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/multistart-reduced-par-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/multistart-reduced-par-llquant-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_parent_files/figure-html/plot-saem-dfop-tc-no-ranef-k2-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_pathway.html create mode 100644 docs/articles/prebuilt/2022_dmta_pathway_files/figure-html/saem-sforb-path-1-tc-reduced-convergence-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_pathway_files/figure-html/unnamed-chunk-2-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_pathway_files/figure-html/unnamed-chunk-3-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_pathway_files/figure-html/unnamed-chunk-4-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_pathway_files/figure-html/unnamed-chunk-6-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_pathway_files/figure-html/unnamed-chunk-7-1.png create mode 100644 docs/articles/prebuilt/2022_dmta_pathway_files/figure-html/unnamed-chunk-8-1.png create mode 100644 docs/reference/hierarchical_kinetics.html create mode 100644 docs/reference/mhmkin-1.png create mode 100644 docs/reference/mhmkin-2.png create mode 100644 docs/reference/summary_listing.html diff --git a/DESCRIPTION b/DESCRIPTION index 8a9836da..54df9c7e 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Package: mkin Type: Package Title: Kinetic Evaluation of Chemical Degradation Data -Version: 1.2.3 -Date: 2023-04-16 +Version: 1.2.3.1 +Date: 2023-04-20 Authors@R: c( person("Johannes", "Ranke", role = c("aut", "cre", "cph"), email = "johannes.ranke@jrwb.de", diff --git a/NEWS.md b/NEWS.md index f5820824..c42951de 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# mkin 1.2.3.1 + +- Small fixes to get the online docs right (example code in R/hierarchical_kinetics, cluster setup in cyantraniliprole and dmta pathway vignettes, graphics and model comparison in multistart vignette), rebuild online docs + # mkin 1.2.3 - 'R/{endpoints,parms,plot.mixed.mmkin,summary.saem.mmkin}.R': Calculate parameters and endpoints and plot population curves for specific covariate values, or specific percentiles of covariate values used in saem fits. diff --git a/docs/404.html b/docs/404.html index 8e7e8f45..4d888396 100644 --- a/docs/404.html +++ b/docs/404.html @@ -32,14 +32,14 @@ mkin - 1.2.1 + 1.2.3.1

Example on page 9, lower panel @@ -454,12 +492,12 @@
## Warning in sqrt(diag(covar)): NaNs produced
## Warning in sqrt(diag(covar_notrans)): NaNs produced
## Warning in sqrt(1/diag(V)): NaNs produced
-
## Warning in cov2cor(ans$covar): diag(.) had 0 or NA entries; non-finite result is
-## doubtful
+
## Warning in cov2cor(ans$covar): diag(.) had 0 or NA entries; non-finite result
+## is doubtful
## The SFO model is rejected as S_SFO is equal or higher than the critical value S_c
## The half-life obtained from the IORE model may be used
-plot(p9b)
+plot(p9b)

 print(p9b)
@@ -501,7 +539,12 @@ ## ## Representative half-life: ## [1] 14.8
-

Here, mkin gives a longer slow DT50 for the DFOP model (17.8 days) than PestDF (13.5 days). Presumably, this is related to the fact that PestDF gives a negative value for the proportion of the fast degradation which should be between 0 and 1, inclusive. This parameter is called f in PestDF and g in mkin. In mkin, it is restricted to the interval from 0 to 1.

+

Here, mkin gives a longer slow DT50 for the DFOP model (17.8 days) +than PestDF (13.5 days). Presumably, this is related to the fact that +PestDF gives a negative value for the proportion of the fast degradation +which should be between 0 and 1, inclusive. This parameter is called f +in PestDF and g in mkin. In mkin, it is restricted to the interval from +0 to 1.

Example on page 10 @@ -510,12 +553,12 @@ p10 <- nafta(NAFTA_SOP_Attachment[["p10"]])

## Warning in sqrt(diag(covar)): NaNs produced
## Warning in sqrt(1/diag(V)): NaNs produced
-
## Warning in cov2cor(ans$covar): diag(.) had 0 or NA entries; non-finite result is
-## doubtful
+
## Warning in cov2cor(ans$covar): diag(.) had 0 or NA entries; non-finite result
+## is doubtful
## The SFO model is rejected as S_SFO is equal or higher than the critical value S_c
## The half-life obtained from the IORE model may be used
-plot(p10)
+plot(p10)

 print(p10)
@@ -557,7 +600,11 @@ ## ## Representative half-life: ## [1] 8.86
-

Here, a value below N is given for the IORE model, because the data suggests a faster decline towards the end of the experiment, which appears physically rather unlikely in the case of a photolysis study. It seems PestDF does not constrain N to values above zero, thus the slight difference in IORE model parameters between PestDF and mkin.

+

Here, a value below N is given for the IORE model, because the data +suggests a faster decline towards the end of the experiment, which +appears physically rather unlikely in the case of a photolysis study. It +seems PestDF does not constrain N to values above zero, thus the slight +difference in IORE model parameters between PestDF and mkin.

@@ -571,7 +618,7 @@
## The SFO model is rejected as S_SFO is equal or higher than the critical value S_c
## The half-life obtained from the IORE model may be used
-plot(p11)
+plot(p11)

 print(p11)
@@ -613,13 +660,19 @@ ## ## Representative half-life: ## [1] 41148170 -

In this case, the DFOP fit reported for PestDF resulted in a negative value for the slower rate constant, which is not possible in mkin. The other results are in agreement.

+

In this case, the DFOP fit reported for PestDF resulted in a negative +value for the slower rate constant, which is not possible in mkin. The +other results are in agreement.

-

N is less than 1 and the DFOP rate constants are like the SFO rate constant +

N is less than 1 and the DFOP rate constants are like the SFO rate +constant

-

In the following three examples, the same results are obtained with mkin as reported for PestDF. As in the case on page 10, the N values below 1 are deemed unrealistic and appear to be the result of an overparameterisation.

+

In the following three examples, the same results are obtained with +mkin as reported for PestDF. As in the case on page 10, the N values +below 1 are deemed unrealistic and appear to be the result of an +overparameterisation.

Example on page 12, upper panel

@@ -630,12 +683,12 @@
## Warning in sqrt(diag(covar)): NaNs produced
## Warning in sqrt(diag(covar_notrans)): NaNs produced
## Warning in sqrt(1/diag(V)): NaNs produced
-
## Warning in cov2cor(ans$covar): diag(.) had 0 or NA entries; non-finite result is
-## doubtful
+
## Warning in cov2cor(ans$covar): diag(.) had 0 or NA entries; non-finite result
+## is doubtful
## The SFO model is rejected as S_SFO is equal or higher than the critical value S_c
## The half-life obtained from the IORE model may be used
-plot(p12a)
+plot(p12a)

 print(p12a)
@@ -690,7 +743,7 @@
## The SFO model is rejected as S_SFO is equal or higher than the critical value S_c
## The half-life obtained from the IORE model may be used
-plot(p12b)
+plot(p12b)

 print(p12b)
@@ -741,7 +794,7 @@
## The SFO model is rejected as S_SFO is equal or higher than the critical value S_c
## The half-life obtained from the IORE model may be used
-plot(p13)
+plot(p13)

 print(p13)
@@ -792,12 +845,12 @@ p14 <- nafta(NAFTA_SOP_Attachment[["p14"]])
## Warning in sqrt(diag(covar)): NaNs produced
## Warning in sqrt(1/diag(V)): NaNs produced
-
## Warning in cov2cor(ans$covar): diag(.) had 0 or NA entries; non-finite result is
-## doubtful
+
## Warning in cov2cor(ans$covar): diag(.) had 0 or NA entries; non-finite result
+## is doubtful
## The SFO model is rejected as S_SFO is equal or higher than the critical value S_c
## The half-life obtained from the IORE model may be used
-plot(p14)
+plot(p14)

 print(p14)
@@ -839,7 +892,9 @@ ## ## Representative half-life: ## [1] 6697.44 -

The slower rate constant reported by PestDF is negative, which is not physically realistic, and not possible in mkin. The other fits give the same results in mkin and PestDF.

+

The slower rate constant reported by PestDF is negative, which is not +physically realistic, and not possible in mkin. The other fits give the +same results in mkin and PestDF.

N is less than 1 and DFOP fraction parameter is below zero @@ -849,7 +904,7 @@
## The SFO model is rejected as S_SFO is equal or higher than the critical value S_c
## The half-life obtained from the IORE model may be used
-plot(p15a)
+plot(p15a)

 print(p15a)
@@ -895,12 +950,12 @@ p15b <- nafta(NAFTA_SOP_Attachment[["p15b"]])
## Warning in sqrt(diag(covar)): NaNs produced
## Warning in sqrt(1/diag(V)): NaNs produced
-
## Warning in cov2cor(ans$covar): diag(.) had 0 or NA entries; non-finite result is
-## doubtful
+
## Warning in cov2cor(ans$covar): diag(.) had 0 or NA entries; non-finite result
+## is doubtful
## The SFO model is rejected as S_SFO is equal or higher than the critical value S_c
## The half-life obtained from the IORE model may be used
-plot(p15b)
+plot(p15b)

 print(p15b)
@@ -942,7 +997,10 @@ ## ## Representative half-life: ## [1] 71.18 -

In mkin, only the IORE fit is affected (deemed unrealistic), as the fraction parameter of the DFOP model is restricted to the interval between 0 and 1 in mkin. The SFO fits give the same results for both mkin and PestDF.

+

In mkin, only the IORE fit is affected (deemed unrealistic), as the +fraction parameter of the DFOP model is restricted to the interval +between 0 and 1 in mkin. The SFO fits give the same results for both +mkin and PestDF.

The DFOP fraction parameter is greater than 1 @@ -954,7 +1012,7 @@
## to the terminal degradation rate found with the DFOP model.
## The representative half-life obtained from the DFOP model may be used
-plot(p16)
+plot(p16)

 print(p16)
@@ -996,20 +1054,32 @@ ## ## Representative half-life: ## [1] 8.93 -

In PestDF, the DFOP fit seems to have stuck in a local minimum, as mkin finds a solution with a much lower \(\chi^2\) error level. As the half-life from the slower rate constant of the DFOP model is larger than the IORE derived half-life, the NAFTA recommendation obtained with mkin is to use the DFOP representative half-life of 8.9 days.

+

In PestDF, the DFOP fit seems to have stuck in a local minimum, as +mkin finds a solution with a much lower \(\chi^2\) error level. As the half-life from +the slower rate constant of the DFOP model is larger than the IORE +derived half-life, the NAFTA recommendation obtained with mkin is to use +the DFOP representative half-life of 8.9 days.

Conclusions

-

The results obtained with mkin deviate from the results obtained with PestDF either in cases where one of the interpretive rules would apply, i.e. the IORE parameter N is less than one or the DFOP k values obtained with PestDF are equal to the SFO k values, or in cases where the DFOP model did not converge, which often lead to negative rate constants returned by PestDF.

-

Therefore, mkin appears to suitable for kinetic evaluations according to the NAFTA guidance.

+

The results obtained with mkin deviate from the results obtained with +PestDF either in cases where one of the interpretive rules would apply, +i.e. the IORE parameter N is less than one or the DFOP k values obtained +with PestDF are equal to the SFO k values, or in cases where the DFOP +model did not converge, which often lead to negative rate constants +returned by PestDF.

+

Therefore, mkin appears to suitable for kinetic evaluations according +to the NAFTA guidance.

References

-
-
-

US EPA. 2015. “Standard Operating Procedure for Using the NAFTA Guidance to Calculate Representative Half-Life Values and Characterizing Pesticide Degradation.”

+
+
+US EPA. 2015. “Standard Operating Procedure for Using the NAFTA +Guidance to Calculate Representative Half-Life Values and Characterizing +Pesticide Degradation.” https://www.epa.gov/pesticide-science-and-assessing-pesticide-risks/standard-operating-procedure-using-nafta-guidance.
@@ -1032,7 +1102,7 @@

-

Site built with pkgdown 2.0.6.

+

Site built with pkgdown 2.0.7.

diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p10-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p10-1.png index 75611a70..566625ea 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p10-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p10-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p11-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p11-1.png index 55466e47..71fc4699 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p11-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p11-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p12a-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p12a-1.png index d3143afa..a1d3a084 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p12a-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p12a-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p12b-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p12b-1.png index 3387ca69..1a6fdd03 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p12b-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p12b-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p13-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p13-1.png index 62a135f2..f9b9f637 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p13-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p13-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p14-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p14-1.png index ae4d83a4..9f7b0cc5 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p14-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p14-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p15a-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p15a-1.png index b6faeff9..b5fd7d91 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p15a-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p15a-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p15b-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p15b-1.png index 6b9ba98c..dfbc996f 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p15b-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p15b-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p16-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p16-1.png index 72df855b..75ac7e5b 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p16-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p16-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p5a-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p5a-1.png index 391dfb95..12a62954 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p5a-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p5a-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p5b-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p5b-1.png index db90244b..6fd175cb 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p5b-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p5b-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p6-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p6-1.png index a33372e8..856c6778 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p6-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p6-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p7-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p7-1.png index d64ea98d..b078fb88 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p7-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p7-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p8-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p8-1.png index 5cd6c806..a1e3bf25 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p8-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p8-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p9a-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p9a-1.png index 61359ea6..c247fd4e 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p9a-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p9a-1.png differ diff --git a/docs/articles/web_only/NAFTA_examples_files/figure-html/p9b-1.png b/docs/articles/web_only/NAFTA_examples_files/figure-html/p9b-1.png index 85790b1e..99d593fc 100644 Binary files a/docs/articles/web_only/NAFTA_examples_files/figure-html/p9b-1.png and b/docs/articles/web_only/NAFTA_examples_files/figure-html/p9b-1.png differ diff --git a/docs/articles/web_only/benchmarks.html b/docs/articles/web_only/benchmarks.html index 64c68ea0..3e73bd12 100644 --- a/docs/articles/web_only/benchmarks.html +++ b/docs/articles/web_only/benchmarks.html @@ -33,14 +33,14 @@ mkin - 1.2.0 + 1.2.3
diff --git a/docs/reference/test_data_from_UBA_2014-1.png b/docs/reference/test_data_from_UBA_2014-1.png index e4fc2a4c..a007a102 100644 Binary files a/docs/reference/test_data_from_UBA_2014-1.png and b/docs/reference/test_data_from_UBA_2014-1.png differ diff --git a/docs/reference/test_data_from_UBA_2014-2.png b/docs/reference/test_data_from_UBA_2014-2.png index 4ce36561..f460ac83 100644 Binary files a/docs/reference/test_data_from_UBA_2014-2.png and b/docs/reference/test_data_from_UBA_2014-2.png differ diff --git a/docs/reference/test_data_from_UBA_2014.html b/docs/reference/test_data_from_UBA_2014.html index a76f23ab..e57141ec 100644 --- a/docs/reference/test_data_from_UBA_2014.html +++ b/docs/reference/test_data_from_UBA_2014.html @@ -18,13 +18,13 @@ mkin - 1.2.0 + 1.2.3
-

Site built with pkgdown 2.0.6.

+

Site built with pkgdown 2.0.7.

diff --git a/docs/reference/transform_odeparms.html b/docs/reference/transform_odeparms.html index 66e94941..2845c6c1 100644 --- a/docs/reference/transform_odeparms.html +++ b/docs/reference/transform_odeparms.html @@ -22,13 +22,13 @@ the ilr transformation is used."> -