diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2023-03-22 23:00:18 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2023-03-22 23:00:18 +0100 |
commit | 9e7aa351b30a0dc9b1e6e14da751c7f42a7587dd (patch) | |
tree | b16293db1c6f268d67961018a28277fc2ab064f8 | |
parent | 81bb17f887f192a5ee4f77829a65689934776471 (diff) | |
parent | b17dc3ee5f4fda17fcbc659730cb81e447510121 (diff) |
Merge branch 'main' into covariate_parms_and_endpoints
-rw-r--r-- | NEWS.md | 2 | ||||
-rw-r--r-- | R/mkinerrmin.R | 2 | ||||
-rw-r--r-- | log/check.log | 22 | ||||
-rw-r--r-- | log/test.log | 53 | ||||
-rw-r--r-- | man/mkinfit.Rd | 4 | ||||
-rw-r--r-- | man/set_nd_nq.Rd | 4 | ||||
-rw-r--r-- | tests/testthat/_snaps/multistart/llhist-for-dfop-sfo-fit.svg | 4 | ||||
-rw-r--r-- | tests/testthat/_snaps/multistart/mixed-model-fit-for-saem-object-with-mkin-transformations.svg | 2 | ||||
-rw-r--r-- | tests/testthat/_snaps/multistart/parplot-for-dfop-sfo-fit.svg | 234 | ||||
-rw-r--r-- | tests/testthat/_snaps/plot/mixed-model-fit-for-nlme-object.svg | 2 |
10 files changed, 169 insertions, 160 deletions
@@ -2,6 +2,8 @@ - Depend on upcoming deSolve version with the possibility to avoid resolving symbols in a shared library (compiled models) over and over. +- 'R/mkinerrmin.R': Fix typo in subset (use of = instead of ==), thanks to Sebastian Meyer for spotting this during his work on R 4.3.0 + # mkin 1.2.2 (unreleased) - 'inst/rmarkdown/templates/hier': R markdown template to facilitate the application of hierarchical kinetic models. diff --git a/R/mkinerrmin.R b/R/mkinerrmin.R index 388060d4..b924f4ab 100644 --- a/R/mkinerrmin.R +++ b/R/mkinerrmin.R @@ -58,7 +58,7 @@ mkinerrmin <- function(fit, alpha = 0.05) # Remove values at time zero for variables whose value for state.ini is fixed, # as these will not have any effect in the optimization and should therefore not # be counted as degrees of freedom. - fixed_initials = gsub("_0$", "", rownames(subset(fit$fixed, type = "state"))) + fixed_initials = gsub("_0$", "", rownames(subset(fit$fixed, type == "state"))) errdata <- subset(errdata, !(time == 0 & variable %in% fixed_initials)) n.optim.overall <- length(parms.optim) - length(fit$errparms) diff --git a/log/check.log b/log/check.log index 967b51d0..b44bc1b4 100644 --- a/log/check.log +++ b/log/check.log @@ -1,14 +1,16 @@ * using log directory ‘/home/jranke/git/mkin/mkin.Rcheck’ -* using R version 4.2.2 Patched (2022-11-10 r83330) +* using R version 4.2.2 (2022-10-31) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using options ‘--no-tests --as-cran’ * checking for file ‘mkin/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘mkin’ version ‘1.3.0’ +* this is package ‘mkin’ version ‘1.2.3’ * package encoding: UTF-8 -* checking CRAN incoming feasibility ... Note_to_CRAN_maintainers +* checking CRAN incoming feasibility ... NOTE Maintainer: ‘Johannes Ranke <johannes.ranke@jrwb.de>’ + +The Date field is over a month old. * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK @@ -41,7 +43,7 @@ Maintainer: ‘Johannes Ranke <johannes.ranke@jrwb.de>’ * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK -* checking R code for possible problems ... OK +* checking R code for possible problems ... [14s/14s] OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd line widths ... OK @@ -58,17 +60,21 @@ Maintainer: ‘Johannes Ranke <johannes.ranke@jrwb.de>’ * checking sizes of PDF files under ‘inst/doc’ ... OK * checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK -* checking examples ... [10s/10s] OK +* checking examples ... [18s/18s] OK * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... SKIPPED * checking for unstated dependencies in vignettes ... OK * checking package vignettes in ‘inst/doc’ ... OK -* checking re-building of vignette outputs ... OK +* checking re-building of vignette outputs ... [12s/12s] OK * checking PDF version of manual ... OK -* checking HTML version of manual ... OK +* skipping checking HTML version of manual: no command ‘tidy’ found * checking for non-standard things in the check directory ... OK * checking for detritus in the temp directory ... OK * DONE -Status: OK +Status: 1 NOTE +See + ‘/home/jranke/git/mkin/mkin.Rcheck/00check.log’ +for details. + diff --git a/log/test.log b/log/test.log index 42ed75e4..d4fb85a2 100644 --- a/log/test.log +++ b/log/test.log @@ -1,53 +1,54 @@ +ℹ Loading mkin ℹ Testing mkin ✔ | F W S OK | Context ✔ | 5 | AIC calculation -✔ | 5 | Analytical solutions for coupled models [1.4s] +✔ | 5 | Analytical solutions for coupled models [2.8s] ✔ | 5 | Calculation of Akaike weights ✔ | 3 | Export dataset for reading into CAKE -✔ | 12 | Confidence intervals and p-values [0.4s] -✔ | 1 12 | Dimethenamid data from 2018 [11.6s] +✔ | 12 | Confidence intervals and p-values [1.0s] +✔ | 1 12 | Dimethenamid data from 2018 [31.3s] ──────────────────────────────────────────────────────────────────────────────── Skip ('test_dmta.R:99'): Different backends get consistent results for SFO-SFO3+, dimethenamid data Reason: Fitting this ODE model with saemix takes about 15 minutes on my system ──────────────────────────────────────────────────────────────────────────────── -✔ | 14 | Error model fitting [2.3s] +✔ | 14 | Error model fitting [6.9s] ✔ | 5 | Time step normalisation -✔ | 4 | Calculation of FOCUS chi2 error levels [0.3s] -✔ | 14 | Results for FOCUS D established in expertise for UBA (Ranke 2014) [0.4s] -✔ | 4 | Test fitting the decline of metabolites from their maximum [0.2s] -✔ | 1 | Fitting the logistic model [0.1s] -✔ | 10 | Batch fitting and diagnosing hierarchical kinetic models [18.5s] -✔ | 1 11 | Nonlinear mixed-effects models [5.9s] +✔ | 4 | Calculation of FOCUS chi2 error levels [0.5s] +✔ | 14 | Results for FOCUS D established in expertise for UBA (Ranke 2014) [0.7s] +✔ | 4 | Test fitting the decline of metabolites from their maximum [0.3s] +✔ | 1 | Fitting the logistic model [0.2s] +✔ | 10 | Batch fitting and diagnosing hierarchical kinetic models [42.7s] +✔ | 1 11 | Nonlinear mixed-effects models [13.1s] ──────────────────────────────────────────────────────────────────────────────── Skip ('test_mixed.R:78'): saemix results are reproducible for biphasic fits Reason: Fitting with saemix takes around 10 minutes when using deSolve ──────────────────────────────────────────────────────────────────────────────── ✔ | 3 | Test dataset classes mkinds and mkindsg -✔ | 10 | Special cases of mkinfit calls [0.4s] -✔ | 3 | mkinfit features [0.5s] -✔ | 8 | mkinmod model generation and printing -✔ | 3 | Model predictions with mkinpredict [0.1s] -✔ | 12 | Multistart method for saem.mmkin models [21.1s] -✔ | 16 | Evaluations according to 2015 NAFTA guidance [1.5s] -✔ | 9 | Nonlinear mixed-effects models with nlme [3.4s] -✔ | 15 | Plotting [4.4s] +✔ | 10 | Special cases of mkinfit calls [0.6s] +✔ | 3 | mkinfit features [0.6s] +✔ | 8 | mkinmod model generation and printing [0.2s] +✔ | 3 | Model predictions with mkinpredict [0.3s] +✔ | 12 | Multistart method for saem.mmkin models [74.1s] +✔ | 16 | Evaluations according to 2015 NAFTA guidance [1.9s] +✔ | 9 | Nonlinear mixed-effects models with nlme [8.5s] +✔ | 15 | Plotting [11.4s] ✔ | 4 | Residuals extracted from mkinfit models -✔ | 1 36 | saemix parent models [29.4s] +✔ | 1 36 | saemix parent models [73.9s] ──────────────────────────────────────────────────────────────────────────────── Skip ('test_saemix_parent.R:143'): We can also use mkin solution methods for saem Reason: This still takes almost 2.5 minutes although we do not solve ODEs ──────────────────────────────────────────────────────────────────────────────── -✔ | 2 | Complex test case from Schaefer et al. (2007) Piacenza paper [0.5s] +✔ | 2 | Complex test case from Schaefer et al. (2007) Piacenza paper [1.1s] ✔ | 11 | Processing of residue series -✔ | 10 | Fitting the SFORB model [1.6s] +✔ | 10 | Fitting the SFORB model [3.1s] ✔ | 1 | Summaries of old mkinfit objects -✔ | 5 | Summary -✔ | 4 | Results for synthetic data established in expertise for UBA (Ranke 2014) [0.8s] -✔ | 9 | Hypothesis tests [2.9s] -✔ | 4 | Calculation of maximum time weighted average concentrations (TWAs) [0.7s] +✔ | 5 | Summary [0.1s] +✔ | 4 | Results for synthetic data established in expertise for UBA (Ranke 2014) [1.7s] +✔ | 9 | Hypothesis tests [6.0s] +✔ | 4 | Calculation of maximum time weighted average concentrations (TWAs) [1.9s] ══ Results ═════════════════════════════════════════════════════════════════════ -Duration: 108.9 s +Duration: 285.4 s ── Skipped tests ────────────────────────────────────────────────────────────── • Fitting this ODE model with saemix takes about 15 minutes on my system (1) diff --git a/man/mkinfit.Rd b/man/mkinfit.Rd index f96b4d22..b5b24449 100644 --- a/man/mkinfit.Rd +++ b/man/mkinfit.Rd @@ -23,8 +23,8 @@ mkinfit( atol = 1e-08, rtol = 1e-10, error_model = c("const", "obs", "tc"), - error_model_algorithm = c("auto", "d_3", "direct", "twostep", "threestep", "fourstep", - "IRLS", "OLS"), + error_model_algorithm = c("auto", "d_3", "direct", "twostep", "threestep", + "fourstep", "IRLS", "OLS"), reweight.tol = 1e-08, reweight.max.iter = 10, trace_parms = FALSE, diff --git a/man/set_nd_nq.Rd b/man/set_nd_nq.Rd index 87a3fae1..796c27a2 100644 --- a/man/set_nd_nq.Rd +++ b/man/set_nd_nq.Rd @@ -54,9 +54,9 @@ it automates the proposal of Boesten et al (2015). } \section{Functions}{ \itemize{ -\item \code{set_nd_nq_focus()}: Set non-detects in residue time series according to FOCUS rules - +\item \code{set_nd_nq_focus}: Set non-detects in residue time series according to FOCUS rules }} + \examples{ # FOCUS (2014) p. 75/76 and 131/132 parent_1 <- c(.12, .09, .05, .03, "nd", "nd", "nd", "nd", "nd", "nd") diff --git a/tests/testthat/_snaps/multistart/llhist-for-dfop-sfo-fit.svg b/tests/testthat/_snaps/multistart/llhist-for-dfop-sfo-fit.svg index 6015aed8..6be8b9dd 100644 --- a/tests/testthat/_snaps/multistart/llhist-for-dfop-sfo-fit.svg +++ b/tests/testthat/_snaps/multistart/llhist-for-dfop-sfo-fit.svg @@ -52,8 +52,8 @@ <g clip-path='url(#cpNTkuMDR8Njg5Ljc2fDU5LjA0fDUwMi41Ng==)'> <rect x='82.40' y='383.47' width='116.80' height='102.67' style='stroke-width: 0.75; fill: #D3D3D3;' /> <rect x='199.20' y='486.13' width='116.80' height='0.00' style='stroke-width: 0.75; fill: #D3D3D3;' /> -<rect x='316.00' y='486.13' width='116.80' height='0.00' style='stroke-width: 0.75; fill: #D3D3D3;' /> -<rect x='432.80' y='178.13' width='116.80' height='308.00' style='stroke-width: 0.75; fill: #D3D3D3;' /> +<rect x='316.00' y='383.47' width='116.80' height='102.67' style='stroke-width: 0.75; fill: #D3D3D3;' /> +<rect x='432.80' y='280.80' width='116.80' height='205.33' style='stroke-width: 0.75; fill: #D3D3D3;' /> <rect x='549.60' y='75.47' width='116.80' height='410.67' style='stroke-width: 0.75; fill: #D3D3D3;' /> <line x1='624.24' y1='502.56' x2='624.24' y2='59.04' style='stroke-width: 0.75; stroke: #DF536B;' /> <line x1='101.38' y1='95.62' x2='122.98' y2='95.62' style='stroke-width: 0.75; stroke: #DF536B;' /> diff --git a/tests/testthat/_snaps/multistart/mixed-model-fit-for-saem-object-with-mkin-transformations.svg b/tests/testthat/_snaps/multistart/mixed-model-fit-for-saem-object-with-mkin-transformations.svg index 69fa6a4d..ed8dcd4d 100644 --- a/tests/testthat/_snaps/multistart/mixed-model-fit-for-saem-object-with-mkin-transformations.svg +++ b/tests/testthat/_snaps/multistart/mixed-model-fit-for-saem-object-with-mkin-transformations.svg @@ -2099,7 +2099,7 @@ <polygon points='489.65,418.35 492.05,414.19 487.25,414.19 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' /> <polygon points='524.32,484.33 526.72,480.17 521.92,480.17 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' /> <polygon points='524.32,429.68 526.72,425.52 521.92,425.52 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' /> -<polygon points='548.13,432.73 550.53,428.58 545.73,428.58 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' /> +<polygon points='548.13,432.73 550.53,428.57 545.73,428.57 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' /> <polygon points='548.13,399.05 550.53,394.90 545.73,394.90 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' /> <polygon points='553.95,493.76 556.35,489.60 551.55,489.60 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' /> <polygon points='553.95,417.07 556.35,412.92 551.55,412.92 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' /> diff --git a/tests/testthat/_snaps/multistart/parplot-for-dfop-sfo-fit.svg b/tests/testthat/_snaps/multistart/parplot-for-dfop-sfo-fit.svg index b01dac74..990b17c0 100644 --- a/tests/testthat/_snaps/multistart/parplot-for-dfop-sfo-fit.svg +++ b/tests/testthat/_snaps/multistart/parplot-for-dfop-sfo-fit.svg @@ -25,104 +25,104 @@ </clipPath> </defs> <g clip-path='url(#cpNTkuMDR8Njg5Ljc2fDU5LjA0fDUwMi41Ng==)'> -<polygon points='86.57,280.91 119.94,280.91 119.94,280.26 86.57,280.26 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='86.57' y1='280.71' x2='119.94' y2='280.71' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='103.26' y1='281.01' x2='103.26' y2='280.91' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='103.26' y1='279.89' x2='103.26' y2='280.26' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='94.91' y1='281.01' x2='111.60' y2='281.01' style='stroke-width: 0.75;' /> -<line x1='94.91' y1='279.89' x2='111.60' y2='279.89' style='stroke-width: 0.75;' /> -<polygon points='86.57,280.91 119.94,280.91 119.94,280.26 86.57,280.26 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='128.29,281.88 161.66,281.88 161.66,280.33 128.29,280.33 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='128.29' y1='280.61' x2='161.66' y2='280.61' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='144.97' y1='282.96' x2='144.97' y2='281.88' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='144.97' y1='280.24' x2='144.97' y2='280.33' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='136.63' y1='282.96' x2='153.31' y2='282.96' style='stroke-width: 0.75;' /> -<line x1='136.63' y1='280.24' x2='153.31' y2='280.24' style='stroke-width: 0.75;' /> -<polygon points='128.29,281.88 161.66,281.88 161.66,280.33 128.29,280.33 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='170.00,281.69 203.37,281.69 203.37,280.53 170.00,280.53 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='170.00' y1='280.75' x2='203.37' y2='280.75' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='186.69' y1='282.58' x2='186.69' y2='281.69' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='186.69' y1='280.35' x2='186.69' y2='280.53' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='178.34' y1='282.58' x2='195.03' y2='282.58' style='stroke-width: 0.75;' /> -<line x1='178.34' y1='280.35' x2='195.03' y2='280.35' style='stroke-width: 0.75;' /> -<polygon points='170.00,281.69 203.37,281.69 203.37,280.53 170.00,280.53 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='211.71,281.83 245.09,281.83 245.09,280.03 211.71,280.03 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='211.71' y1='281.14' x2='245.09' y2='281.14' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='228.40' y1='282.17' x2='228.40' y2='281.83' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='228.40' y1='279.26' x2='228.40' y2='280.03' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='220.06' y1='282.17' x2='236.74' y2='282.17' style='stroke-width: 0.75;' /> -<line x1='220.06' y1='279.26' x2='236.74' y2='279.26' style='stroke-width: 0.75;' /> -<polygon points='211.71,281.83 245.09,281.83 245.09,280.03 211.71,280.03 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='253.43,282.21 286.80,282.21 286.80,280.57 253.43,280.57 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='253.43' y1='281.30' x2='286.80' y2='281.30' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='270.11' y1='282.62' x2='270.11' y2='282.21' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='270.11' y1='280.34' x2='270.11' y2='280.57' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='261.77' y1='282.62' x2='278.46' y2='282.62' style='stroke-width: 0.75;' /> -<line x1='261.77' y1='280.34' x2='278.46' y2='280.34' style='stroke-width: 0.75;' /> -<polygon points='253.43,282.21 286.80,282.21 286.80,280.57 253.43,280.57 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='295.14,281.50 328.51,281.50 328.51,278.14 295.14,278.14 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='295.14' y1='279.67' x2='328.51' y2='279.67' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='311.83' y1='282.20' x2='311.83' y2='281.50' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='311.83' y1='277.75' x2='311.83' y2='278.14' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='303.49' y1='282.20' x2='320.17' y2='282.20' style='stroke-width: 0.75;' /> -<line x1='303.49' y1='277.75' x2='320.17' y2='277.75' style='stroke-width: 0.75;' /> -<polygon points='295.14,281.50 328.51,281.50 328.51,278.14 295.14,278.14 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='336.86,281.52 370.23,281.52 370.23,280.88 336.86,280.88 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='336.86' y1='281.06' x2='370.23' y2='281.06' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='353.54' y1='281.89' x2='353.54' y2='281.52' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='353.54' y1='280.80' x2='353.54' y2='280.88' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='345.20' y1='281.89' x2='361.89' y2='281.89' style='stroke-width: 0.75;' /> +<polygon points='86.57,281.14 119.94,281.14 119.94,280.62 86.57,280.62 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='86.57' y1='280.87' x2='119.94' y2='280.87' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='103.26' y1='281.34' x2='103.26' y2='281.14' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='103.26' y1='280.43' x2='103.26' y2='280.62' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='94.91' y1='281.34' x2='111.60' y2='281.34' style='stroke-width: 0.75;' /> +<line x1='94.91' y1='280.43' x2='111.60' y2='280.43' style='stroke-width: 0.75;' /> +<polygon points='86.57,281.14 119.94,281.14 119.94,280.62 86.57,280.62 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='128.29,279.76 161.66,279.76 161.66,276.63 128.29,276.63 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='128.29' y1='277.71' x2='161.66' y2='277.71' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='144.97' y1='280.80' x2='144.97' y2='279.76' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='144.97' y1='276.56' x2='144.97' y2='276.63' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='136.63' y1='280.80' x2='153.31' y2='280.80' style='stroke-width: 0.75;' /> +<line x1='136.63' y1='276.56' x2='153.31' y2='276.56' style='stroke-width: 0.75;' /> +<polygon points='128.29,279.76 161.66,279.76 161.66,276.63 128.29,276.63 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='170.00,280.64 203.37,280.64 203.37,278.92 170.00,278.92 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='170.00' y1='279.81' x2='203.37' y2='279.81' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='186.69' y1='280.80' x2='186.69' y2='280.64' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='186.69' y1='278.70' x2='186.69' y2='278.92' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='178.34' y1='280.80' x2='195.03' y2='280.80' style='stroke-width: 0.75;' /> +<line x1='178.34' y1='278.70' x2='195.03' y2='278.70' style='stroke-width: 0.75;' /> +<polygon points='170.00,280.64 203.37,280.64 203.37,278.92 170.00,278.92 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='211.71,281.35 245.09,281.35 245.09,280.71 211.71,280.71 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='211.71' y1='281.05' x2='245.09' y2='281.05' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='228.40' y1='281.39' x2='228.40' y2='281.35' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='228.40' y1='280.62' x2='228.40' y2='280.71' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='220.06' y1='281.39' x2='236.74' y2='281.39' style='stroke-width: 0.75;' /> +<line x1='220.06' y1='280.62' x2='236.74' y2='280.62' style='stroke-width: 0.75;' /> +<polygon points='211.71,281.35 245.09,281.35 245.09,280.71 211.71,280.71 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='253.43,280.78 286.80,280.78 286.80,280.07 253.43,280.07 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='253.43' y1='280.58' x2='286.80' y2='280.58' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='270.11' y1='280.80' x2='270.11' y2='280.78' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='270.11' y1='279.76' x2='270.11' y2='280.07' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='261.77' y1='280.80' x2='278.46' y2='280.80' style='stroke-width: 0.75;' /> +<line x1='261.77' y1='279.76' x2='278.46' y2='279.76' style='stroke-width: 0.75;' /> +<polygon points='253.43,280.78 286.80,280.78 286.80,280.07 253.43,280.07 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='295.14,282.49 328.51,282.49 328.51,280.41 295.14,280.41 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='295.14' y1='281.36' x2='328.51' y2='281.36' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='311.83' y1='283.07' x2='311.83' y2='282.49' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='311.83' y1='280.01' x2='311.83' y2='280.41' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='303.49' y1='283.07' x2='320.17' y2='283.07' style='stroke-width: 0.75;' /> +<line x1='303.49' y1='280.01' x2='320.17' y2='280.01' style='stroke-width: 0.75;' /> +<polygon points='295.14,282.49 328.51,282.49 328.51,280.41 295.14,280.41 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='336.86,281.56 370.23,281.56 370.23,281.07 336.86,281.07 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='336.86' y1='281.41' x2='370.23' y2='281.41' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='353.54' y1='281.64' x2='353.54' y2='281.56' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='353.54' y1='280.80' x2='353.54' y2='281.07' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='345.20' y1='281.64' x2='361.89' y2='281.64' style='stroke-width: 0.75;' /> <line x1='345.20' y1='280.80' x2='361.89' y2='280.80' style='stroke-width: 0.75;' /> -<polygon points='336.86,281.52 370.23,281.52 370.23,280.88 336.86,280.88 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='378.57,281.06 411.94,281.06 411.94,280.72 378.57,280.72 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='378.57' y1='280.91' x2='411.94' y2='280.91' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='395.26' y1='281.09' x2='395.26' y2='281.06' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='395.26' y1='280.64' x2='395.26' y2='280.72' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='386.91' y1='281.09' x2='403.60' y2='281.09' style='stroke-width: 0.75;' /> -<line x1='386.91' y1='280.64' x2='403.60' y2='280.64' style='stroke-width: 0.75;' /> -<polygon points='378.57,281.06 411.94,281.06 411.94,280.72 378.57,280.72 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='420.29,106.59 453.66,106.59 453.66,-114.09 420.29,-114.09 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='420.29' y1='-49.57' x2='453.66' y2='-49.57' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='436.97' y1='280.80' x2='436.97' y2='106.59' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='436.97' y1='-136.13' x2='436.97' y2='-114.09' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<polygon points='336.86,281.56 370.23,281.56 370.23,281.07 336.86,281.07 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='378.57,281.25 411.94,281.25 411.94,280.89 378.57,280.89 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='378.57' y1='281.04' x2='411.94' y2='281.04' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='395.26' y1='281.40' x2='395.26' y2='281.25' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='395.26' y1='280.80' x2='395.26' y2='280.89' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='386.91' y1='281.40' x2='403.60' y2='281.40' style='stroke-width: 0.75;' /> +<line x1='386.91' y1='280.80' x2='403.60' y2='280.80' style='stroke-width: 0.75;' /> +<polygon points='378.57,281.25 411.94,281.25 411.94,280.89 378.57,280.89 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='420.29,279.16 453.66,279.16 453.66,-6.19 420.29,-6.19 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='420.29' y1='187.30' x2='453.66' y2='187.30' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='436.97' y1='280.80' x2='436.97' y2='279.16' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='436.97' y1='-93.54' x2='436.97' y2='-6.19' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> <line x1='428.63' y1='280.80' x2='445.31' y2='280.80' style='stroke-width: 0.75;' /> -<line x1='428.63' y1='-136.13' x2='445.31' y2='-136.13' style='stroke-width: 0.75;' /> -<polygon points='420.29,106.59 453.66,106.59 453.66,-114.09 420.29,-114.09 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='462.00,281.28 495.37,281.28 495.37,276.14 462.00,276.14 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='462.00' y1='278.79' x2='495.37' y2='278.79' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='478.69' y1='281.75' x2='478.69' y2='281.28' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='478.69' y1='275.48' x2='478.69' y2='276.14' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='470.34' y1='281.75' x2='487.03' y2='281.75' style='stroke-width: 0.75;' /> -<line x1='470.34' y1='275.48' x2='487.03' y2='275.48' style='stroke-width: 0.75;' /> -<polygon points='462.00,281.28 495.37,281.28 495.37,276.14 462.00,276.14 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='503.71,282.81 537.09,282.81 537.09,281.44 503.71,281.44 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='503.71' y1='282.28' x2='537.09' y2='282.28' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='520.40' y1='283.13' x2='520.40' y2='282.81' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='520.40' y1='280.80' x2='520.40' y2='281.44' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='512.06' y1='283.13' x2='528.74' y2='283.13' style='stroke-width: 0.75;' /> +<line x1='428.63' y1='-93.54' x2='445.31' y2='-93.54' style='stroke-width: 0.75;' /> +<polygon points='420.29,279.16 453.66,279.16 453.66,-6.19 420.29,-6.19 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='462.00,282.01 495.37,282.01 495.37,279.11 462.00,279.11 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='462.00' y1='281.11' x2='495.37' y2='281.11' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='478.69' y1='282.60' x2='478.69' y2='282.01' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='478.69' y1='277.42' x2='478.69' y2='279.11' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='470.34' y1='282.60' x2='487.03' y2='282.60' style='stroke-width: 0.75;' /> +<line x1='470.34' y1='277.42' x2='487.03' y2='277.42' style='stroke-width: 0.75;' /> +<polygon points='462.00,282.01 495.37,282.01 495.37,279.11 462.00,279.11 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='503.71,280.70 537.09,280.70 537.09,278.87 503.71,278.87 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='503.71' y1='279.96' x2='537.09' y2='279.96' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='520.40' y1='280.80' x2='520.40' y2='280.70' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='520.40' y1='278.42' x2='520.40' y2='278.87' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> <line x1='512.06' y1='280.80' x2='528.74' y2='280.80' style='stroke-width: 0.75;' /> -<polygon points='503.71,282.81 537.09,282.81 537.09,281.44 503.71,281.44 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='545.43,282.16 578.80,282.16 578.80,276.63 545.43,276.63 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='545.43' y1='279.04' x2='578.80' y2='279.04' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='562.11' y1='283.53' x2='562.11' y2='282.16' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='562.11' y1='275.97' x2='562.11' y2='276.63' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='553.77' y1='283.53' x2='570.46' y2='283.53' style='stroke-width: 0.75;' /> -<line x1='553.77' y1='275.97' x2='570.46' y2='275.97' style='stroke-width: 0.75;' /> -<polygon points='545.43,282.16 578.80,282.16 578.80,276.63 545.43,276.63 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='587.14,283.70 620.51,283.70 620.51,280.38 587.14,280.38 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='587.14' y1='281.36' x2='620.51' y2='281.36' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='603.83' y1='285.50' x2='603.83' y2='283.70' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='603.83' y1='279.95' x2='603.83' y2='280.38' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='595.49' y1='285.50' x2='612.17' y2='285.50' style='stroke-width: 0.75;' /> -<line x1='595.49' y1='279.95' x2='612.17' y2='279.95' style='stroke-width: 0.75;' /> -<polygon points='587.14,283.70 620.51,283.70 620.51,280.38 587.14,280.38 ' style='stroke-width: 0.75; fill: none;' /> -<polygon points='628.86,288.92 662.23,288.92 662.23,261.71 628.86,261.71 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> -<line x1='628.86' y1='272.96' x2='662.23' y2='272.96' style='stroke-width: 2.25; stroke-linecap: butt;' /> -<line x1='645.54' y1='297.26' x2='645.54' y2='288.92' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='645.54' y1='258.13' x2='645.54' y2='261.71' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> -<line x1='637.20' y1='297.26' x2='653.89' y2='297.26' style='stroke-width: 0.75;' /> -<line x1='637.20' y1='258.13' x2='653.89' y2='258.13' style='stroke-width: 0.75;' /> -<polygon points='628.86,288.92 662.23,288.92 662.23,261.71 628.86,261.71 ' style='stroke-width: 0.75; fill: none;' /> +<line x1='512.06' y1='278.42' x2='528.74' y2='278.42' style='stroke-width: 0.75;' /> +<polygon points='503.71,280.70 537.09,280.70 537.09,278.87 503.71,278.87 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='545.43,282.45 578.80,282.45 578.80,278.54 545.43,278.54 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='545.43' y1='280.96' x2='578.80' y2='280.96' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='562.11' y1='283.78' x2='562.11' y2='282.45' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='562.11' y1='276.30' x2='562.11' y2='278.54' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='553.77' y1='283.78' x2='570.46' y2='283.78' style='stroke-width: 0.75;' /> +<line x1='553.77' y1='276.30' x2='570.46' y2='276.30' style='stroke-width: 0.75;' /> +<polygon points='545.43,282.45 578.80,282.45 578.80,278.54 545.43,278.54 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='587.14,288.17 620.51,288.17 620.51,282.46 587.14,282.46 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='587.14' y1='285.86' x2='620.51' y2='285.86' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='603.83' y1='288.73' x2='603.83' y2='288.17' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='603.83' y1='280.80' x2='603.83' y2='282.46' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='595.49' y1='288.73' x2='612.17' y2='288.73' style='stroke-width: 0.75;' /> +<line x1='595.49' y1='280.80' x2='612.17' y2='280.80' style='stroke-width: 0.75;' /> +<polygon points='587.14,288.17 620.51,288.17 620.51,282.46 587.14,282.46 ' style='stroke-width: 0.75; fill: none;' /> +<polygon points='628.86,267.12 662.23,267.12 662.23,240.81 628.86,240.81 ' style='stroke-width: 0.75; stroke: none; fill: #D3D3D3;' /> +<line x1='628.86' y1='249.02' x2='662.23' y2='249.02' style='stroke-width: 2.25; stroke-linecap: butt;' /> +<line x1='645.54' y1='280.80' x2='645.54' y2='267.12' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='645.54' y1='237.59' x2='645.54' y2='240.81' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> +<line x1='637.20' y1='280.80' x2='653.89' y2='280.80' style='stroke-width: 0.75;' /> +<line x1='637.20' y1='237.59' x2='653.89' y2='237.59' style='stroke-width: 0.75;' /> +<polygon points='628.86,267.12 662.23,267.12 662.23,240.81 628.86,240.81 ' style='stroke-width: 0.75; fill: none;' /> </g> <g clip-path='url(#cpMC4wMHw3MjAuMDB8MC4wMHw1NzYuMDA=)'> <line x1='103.26' y1='502.56' x2='645.54' y2='502.56' style='stroke-width: 0.75;' /> @@ -162,28 +162,28 @@ <polygon points='59.04,502.56 689.76,502.56 689.76,59.04 59.04,59.04 ' style='stroke-width: 0.75; fill: none;' /> </g> <g clip-path='url(#cpNTkuMDR8Njg5Ljc2fDU5LjA0fDUwMi41Ng==)'> -<circle cx='103.26' cy='279.64' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> -<circle cx='144.97' cy='286.44' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> -<circle cx='186.69' cy='283.22' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> -<circle cx='228.40' cy='269.36' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> -<circle cx='270.11' cy='283.47' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> -<circle cx='311.83' cy='285.42' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> -<circle cx='353.54' cy='258.25' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> -<circle cx='395.26' cy='-596.36' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> -<circle cx='103.26' cy='280.60' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='144.97' cy='281.94' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='186.69' cy='281.42' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='228.40' cy='283.69' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='270.11' cy='282.86' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='311.83' cy='277.19' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='353.54' cy='280.74' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='395.26' cy='281.31' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='436.97' cy='-50.55' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='478.69' cy='282.91' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='520.40' cy='281.35' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='562.11' cy='277.34' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='603.83' cy='281.94' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> -<circle cx='645.54' cy='296.99' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='103.26' cy='280.19' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> +<circle cx='144.97' cy='282.20' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> +<circle cx='186.69' cy='281.11' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> +<circle cx='228.40' cy='269.18' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> +<circle cx='270.11' cy='282.42' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> +<circle cx='311.83' cy='287.69' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> +<circle cx='353.54' cy='258.78' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> +<circle cx='395.26' cy='-596.06' r='8.10' style='stroke-width: 0.75; stroke: #61D04F;' /> +<circle cx='103.26' cy='281.15' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='144.97' cy='277.70' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='186.69' cy='279.32' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='228.40' cy='283.52' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='270.11' cy='281.82' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='311.83' cy='279.45' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='353.54' cy='281.28' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='395.26' cy='281.62' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='436.97' cy='-53.82' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='478.69' cy='283.53' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='520.40' cy='279.87' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='562.11' cy='277.66' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='603.83' cy='288.75' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> +<circle cx='645.54' cy='253.78' r='5.40' style='stroke-width: 0.75; stroke: #DF536B;' /> <line x1='59.04' y1='280.80' x2='689.76' y2='280.80' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' /> <line x1='93.82' y1='465.98' x2='115.42' y2='465.98' style='stroke-width: 0.75;' /> <circle cx='104.62' cy='437.18' r='2.70' style='stroke-width: 0.75; stroke: #61D04F;' /> diff --git a/tests/testthat/_snaps/plot/mixed-model-fit-for-nlme-object.svg b/tests/testthat/_snaps/plot/mixed-model-fit-for-nlme-object.svg index 76fed0dc..47e2b8cc 100644 --- a/tests/testthat/_snaps/plot/mixed-model-fit-for-nlme-object.svg +++ b/tests/testthat/_snaps/plot/mixed-model-fit-for-nlme-object.svg @@ -900,7 +900,7 @@ <polygon points='566.02,339.01 569.19,335.84 572.36,339.01 569.19,342.18 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' /> <polygon points='522.33,381.82 525.49,378.65 528.66,381.82 525.49,384.99 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' /> <polygon points='522.33,245.14 525.49,241.97 528.66,245.14 525.49,248.31 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' /> -<polygon points='476.30,377.33 479.47,374.17 482.64,377.33 479.47,380.50 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' /> +<polygon points='476.30,377.33 479.47,374.16 482.64,377.33 479.47,380.50 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' /> <polygon points='476.30,307.60 479.47,304.43 482.64,307.60 479.47,310.77 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' /> <polygon points='453.11,292.28 456.28,289.11 459.45,292.28 456.28,295.45 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' /> <polygon points='453.11,318.06 456.28,314.89 459.45,318.06 456.28,321.23 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' /> |