From 59566e315c5d05a0aa4a46ab80c5fda33c5c2f1e Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Sat, 29 Oct 2022 00:36:22 +0200 Subject: Update multistart docs --- docs/dev/reference/multistart.html | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'docs/dev/reference/multistart.html') diff --git a/docs/dev/reference/multistart.html b/docs/dev/reference/multistart.html index c874bf50..176d40c0 100644 --- a/docs/dev/reference/multistart.html +++ b/docs/dev/reference/multistart.html @@ -175,7 +175,7 @@ doi: 10.1186/s12859-021-04373-4.

See also

- +
@@ -195,7 +195,7 @@ doi: 10.1186/s12859-021-04373-4.

f_mmkin <- mmkin("DFOP", dmta_ds, error_model = "tc", cores = 7, quiet = TRUE) f_saem_full <- saem(f_mmkin) f_saem_full_multi <- multistart(f_saem_full, n = 16, cores = 16) -parhist(f_saem_full_multi, lpos = "bottomleft") +parplot(f_saem_full_multi, lpos = "topleft") illparms(f_saem_full) #> [1] "sd(log_k2)" @@ -208,11 +208,10 @@ doi: 10.1186/s12859-021-04373-4.

# nodes, as it is referred to when updating the saem object on the nodes. library(parallel) cl <- makePSOCKcluster(12) -clusterExport(cl, "f_mmkin") -#> Error in get(name, envir = envir): object 'f_mmkin' not found f_saem_reduced_multi <- multistart(f_saem_reduced, n = 16, cluster = cl) -parhist(f_saem_reduced_multi, lpos = "topright") +parplot(f_saem_reduced_multi, lpos = "topright") +stopCluster(cl) # }
-- cgit v1.2.1