diff options
Diffstat (limited to 'vignettes')
-rw-r--r-- | vignettes/web_only/multistart.html | 2 | ||||
-rw-r--r-- | vignettes/web_only/multistart.rmd | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vignettes/web_only/multistart.html b/vignettes/web_only/multistart.html index c65bf376..5107791f 100644 --- a/vignettes/web_only/multistart.html +++ b/vignettes/web_only/multistart.html @@ -390,7 +390,7 @@ parplot(f_saem_full_multi, lpos = "topleft")</code></pre> <p>This confirms that the variance of k2 is the most problematic parameter, so we reduce the parameter distribution model by removing the intersoil variability for k2.</p> -<pre class="r"><code>f_saem_reduced <- update(f_saem_full, no_random_effect = "log_k2") +<pre class="r"><code>f_saem_reduced <- stats::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", ylim = c(0.5, 2))</code></pre> diff --git a/vignettes/web_only/multistart.rmd b/vignettes/web_only/multistart.rmd index 34ed1ad4..9de63f62 100644 --- a/vignettes/web_only/multistart.rmd +++ b/vignettes/web_only/multistart.rmd @@ -48,7 +48,7 @@ reduce the parameter distribution model by removing the intersoil variability for k2. ```{r} -f_saem_reduced <- update(f_saem_full, no_random_effect = "log_k2") +f_saem_reduced <- stats::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", ylim = c(0.5, 2)) |