diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2020-11-11 19:46:41 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2020-11-11 19:46:41 +0100 |
commit | f9a5da41b6bcb8a34e27574ede50ddef2255430f (patch) | |
tree | 3c0bef7e53ec1eb44818e2cc2f82c9e3fa217786 /R | |
parent | 158b2f02c6778bcb1b868497c6366924ec96102d (diff) |
Fix docs and passing of dot arguments for saem
Diffstat (limited to 'R')
-rw-r--r-- | R/saem.R | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -24,11 +24,7 @@ #' @param suppressPlot Should we suppress any plotting that is done #' by the saemix function? #' @param control Passed to [saemix::saemix] -#' @param transform.par Vector of 0 or 1 values. If all 0, -#' parameter transformations are done by [transform_odeparms]. -#' -#' @param \dots Further parameters passed to [saemix::saemixData] -#' and [saemix::saemixModel]. +#' @param \dots Further parameters passed to [saemix::saemixModel]. #' @return An S3 object of class 'saem.mmkin', containing the fitted #' [saemix::SaemixObject] as a list component named 'so'. The #' object also inherits from 'mixed.mmkin'. @@ -96,7 +92,7 @@ saem.mmkin <- function(object, cores = 1, verbose = FALSE, suppressPlot = TRUE, quiet = FALSE, ...) { - m_saemix <- saemix_model(object, cores = cores, verbose = verbose) + m_saemix <- saemix_model(object, cores = cores, verbose = verbose, ...) d_saemix <- saemix_data(object, verbose = verbose) if (suppressPlot) { # We suppress the log-likelihood curve that saemix currently |