diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2020-05-26 18:38:51 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2020-05-26 18:52:01 +0200 |
commit | 675a733fa2acc08daabb9b8b571c7d658f281f73 (patch) | |
tree | ef29cec38aa6d446f7956c0e423cca6bed2e21c0 /man/confint.mkinfit.Rd | |
parent | 5e85d8856e7c9db3c52bb6ac5a0a81e2f0c6181c (diff) |
Use all cores per default, confint tolerance
Also, use more intelligent starting values for the variance of the
random effects for saemix. While this does not appear to speed up
the convergence, it shows where this variance is greatly reduced
by using mixed-effects models as opposed to the separate independent
fits.
Diffstat (limited to 'man/confint.mkinfit.Rd')
-rw-r--r-- | man/confint.mkinfit.Rd | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/man/confint.mkinfit.Rd b/man/confint.mkinfit.Rd index f295afc4..fd2890ff 100644 --- a/man/confint.mkinfit.Rd +++ b/man/confint.mkinfit.Rd @@ -13,7 +13,8 @@ method = c("quadratic", "profile"), transformed = TRUE, backtransform = TRUE, - cores = round(detectCores()/2), + cores = parallel::detectCores(), + rel_tol = 0.01, quiet = FALSE, ... ) @@ -48,6 +49,10 @@ their confidence intervals?} \item{cores}{The number of cores to be used for multicore processing. On Windows machines, cores > 1 is currently not supported.} +\item{rel_tol}{If the method is 'profile', what should be the accuracy +of the lower and upper bounds, relative to the estimate obtained from +the quadratic method?} + \item{quiet}{Should we suppress the message "Profiling the likelihood"} \item{\dots}{Not used} |