diff options
author | Johannes Ranke <johannes.ranke@jrwb.de> | 2025-02-14 07:19:15 +0100 |
---|---|---|
committer | Johannes Ranke <johannes.ranke@jrwb.de> | 2025-02-14 07:19:15 +0100 |
commit | b0f08271d1dae8ffaf57f557c27eba1314ece1d5 (patch) | |
tree | 98da899d455d6945849d6f4b4e98adfb98dc8b2b /man/multistart.Rd | |
parent | 7dc59c522d0639f6473463340e518e2e8074e364 (diff) | |
parent | 55d9c2331e468efd364472555dbfae84603a4f73 (diff) |
Merge branch 'main' into dev
Diffstat (limited to 'man/multistart.Rd')
-rw-r--r-- | man/multistart.Rd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man/multistart.Rd b/man/multistart.Rd index 0df29bfa..d3c23bcf 100644 --- a/man/multistart.Rd +++ b/man/multistart.Rd @@ -77,7 +77,7 @@ dmta_ds[["Elliot 1"]] <- dmta_ds[["Elliot 2"]] <- NULL 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) -parplot(f_saem_full_multi, lpos = "topleft") +parplot(f_saem_full_multi, lpos = "topleft", las = 2) illparms(f_saem_full) f_saem_reduced <- update(f_saem_full, no_random_effect = "log_k2") @@ -87,7 +87,7 @@ illparms(f_saem_reduced) library(parallel) cl <- makePSOCKcluster(12) f_saem_reduced_multi <- multistart(f_saem_reduced, n = 16, cluster = cl) -parplot(f_saem_reduced_multi, lpos = "topright", ylim = c(0.5, 2)) +parplot(f_saem_reduced_multi, lpos = "topright", ylim = c(0.5, 2), las = 2) stopCluster(cl) } } |