R/fitmodel.R

Defines functions fitmodel

Documented in fitmodel

#' Executes an NLME simple estimation
#'
#' Executes an NLME simple estimation
#'
#' @param  model PK/PD model class object.
#' @param  hostPlatform Host definition for model execution. See \code{\link{hostParams}}.
#' If \code{missing}, PhoenixMPIDir64 is given  and MPI is installed,
#' MPI local host with 4 threads is used. If MPI is not found, local host
#' without parallelization is used.
#' @param  params Engine parameters. See \code{\link{engineParams}}.
#' If \code{missing}, default parameters generated by engineParams(model) are used.
#' @param simpleTables Optional list of simple tables. See
#' \code{\link{tableParams}}. By default a table named 'posthoc.csv' is returned
#' with structural parameters values for all source data rows.
#' @param  runInBackground Set to \code{TRUE} to run in background and return prompt.
#' @param filesToReturn  Used to specify which files to be outputted to the model directory
#' and loaded as returned value. By default, all the applicable files listed
#' in the \code{Value} section will be outputted to the model directory and loaded as returned value.
#' Only those files listed in the \code{Value} section can be specified.
#' Simple regex patterns are supported for the specification.
#' @param ... Additional arguments for  \code{\link{hostParams}}
#' or arguments available inside \code{\link{engineParams}} functions.
#' If \code{\link{engineParams}} arguments are supplied through both \code{params} argument
#' and additional argument (i.e., ellipsis), then the arguments in \code{params} will be ignored
#' and only the additional arguments will be used with warning.
#' If \code{\link{hostParams}} arguments are supplied through both the \code{hostPlatform}
#'  argument and the ellipses, values supplied to \code{hostPlatform} will be overridden by
#'  additional arguments supplied via the ellipses e.g., \code{...}.
#' @md
#' @return if \code{runInBackground} is \code{FALSE}, a list with  main
#' resulted dataframes is returned:
#' * Overall
#' * ConvergenceData
#' * residuals
#' * Secondary
#' * StrCovariate  - if continuous covariates presented
#' * StrCovariateCat - if categorical covariates presented
#' * theta
#' * posthoc table
#' * posthocStacked table
#' * Requested tables
#'
#' \code{nlme7engine.log} textual output is returned and loaded with the main information related to
#' fitting. \code{dmp.txt} structure with the results of fitting (including LL by subject information)
#' is returned and loaded. These 2 files are returned and loaded irrespective of
#' \code{filesToReturn} argument value.
#'
#' For individual models, additional dataframe with partial derivatives is returned:
#' * ParDer
#'
#' For population models and the method specified is NOT \code{Naive-Pooled},
#' additional dataframes are returned:
#' * omega
#' * Eta
#' * EtaStacked
#' * EtaEta
#' * EtaCov
#' * EtaCovariate - if continuous covariates presented
#' * EtaCovariateCat - if categorical covariates presented
#' * bluptable.dat
#'
#' If standard error computation was requested and it was successful, additional dataframes
#' are returned:
#' * thetaCorrelation
#' * thetaCovariance
#' * Covariance
#' * omega_stderr
#'
#' If nonparametric method was requested (\code{numIterNonParametric} > 0) and
#' the \code{method} specified in \code{engineParams}  is NOT \code{Naive-Pooled},
#' additional dataframes are returned:
#' * nonParSupportResult
#' * nonParStackedResult
#' * nonParEtaResult
#' * nonParOverallResult
#'
#' if \code{runInBackground} is \code{TRUE}, only current status of job is returned.
#'
#' @section \code{filesToReturn} with \code{Certara.Xpose.NLME}:
#' If \code{filesToReturn} is used and "ConvergenceData.csv" and "residuals.csv"
#' are not in the patterns, these files won't be returned and loaded. These files
#' are essential for \code{Certara.Xpose.NLME::xposeNlmeModel} and
#' \code{Certara.Xpose.NLME::xposeNlme} functions. This makes impossible to
#' use the resulted object in \code{Certara.Xpose.NLME} functions.
#'
#' @section Non-loaded but returned files:
#' The non-loaded but returned files in the model working directory are:
#' * err1.txt - concatenated for all runs detailed logs for all steps of optimization,
#' * out.txt - general pivoted information about results,
#' * doses.csv - information about doses given for all subjects,
#' * iniest.csv - information about initial estimates
#'
#' @seealso \code{\link{tableParams}, \link{hostParams},
#' \link{engineParams}}
#'
#' @examples
#' \donttest{
#'
#'  # Define the host
#'  host <- hostParams(parallelMethod = "None",
#'                     hostName = "local",
#'                     numCores = 1)
#'  # Define the model
#'  model <- pkmodel(numComp = 2,
#'                   absorption = "FirstOrder",
#'                   ID = "Subject",
#'                   Time = "Act_Time",
#'                   CObs = "Conc",
#'                   Aa = "Amount",
#'                   data = pkData,
#'                   modelName = "PkModel")
#'
#'  Table01 <- tableParams(name = "SimTableObs.csv",
#'                         timesList = "0,1,2,4,4.9,55.1,56,57,59,60",
#'                         variablesList = "C, CObs",
#'                         timeAfterDose = FALSE,
#'                         forSimulation = FALSE)
#'
#'  # Update fixed effects
#'  model <- fixedEffect(model,
#'                      effect = c("tvV", "tvCl", "tvV2", "tvCl2"),
#'                      value = c(16, 41, 7, 14))
#'
#'  # Define the engine parameters
#'  params <- engineParams(model)
#'
#'  # Fit model
#'  res <- fitmodel(model = model,
#'                  hostPlatform = host,
#'                  params = params,
#'                  simpleTables = Table01)
#' }
#'
#' @export
fitmodel <- function(model,
                     hostPlatform = NULL,
                     params,
                     simpleTables,
                     runInBackground = FALSE,
                     filesToReturn = "*",
                     ...) {
  if (missing(model)) {
    stop("model argument is required for run.")
  } else {
    stopifnot(inherits(model, "NlmePmlModel"))
  }

  ellipsisArgs <- list(...)
  hostPlatform <-
    .load_hostPlatform(hostPlatform,
                       ellipsisArgs,
                       model = model,
                       mode = "fit")

  params <- .load_engineParams(model, params, ellipsisArgs)

  if (!missing(simpleTables)) {
    if (length(simpleTables) == 1 &&
        inherits(simpleTables, "NlmeTableDef")) {
      simpleTables <- list(simpleTables)
    } else {
      stopifnot(inherits(simpleTables, "list"))
    }
  }

  if (hostPlatform@hostType == "Windows" && runInBackground) {
    warning("`runInBackground = TRUE` is not available on Windows. Setting argument to `FALSE`.")
    runInBackground <- FALSE
  } else {
    stopifnot(is.logical(runInBackground))
  }

  model@modelInfo@workingDir <-
    .prepare_wd(model@modelInfo@workingDir)
  workingDir <- model@modelInfo@workingDir
  stopifnot(.remove_oldResults(workingDir))

  writeDefaultFiles(
    model = model,
    dataset = model@dataset,
    Tables = simpleTables,
    sortColumns = NULL
  )

  workFlow <- "WorkFlow"

  argsFile <- GenerateControlfile(
    dataset = model@dataset,
    params = params,
    workFlow = workFlow,
    workingDir = workingDir,
    filesToReturn = filesToReturn
  )

  argsList <- list(
    jobType = "GENERIC",
    parallelMethod = hostPlatform@parallelMethod@method,
    install_dir = hostPlatform@installationDirectory,
    shared_directory = hostPlatform@sharedDirectory,
    localWorkingDir = workingDir,
    controlFile = names(argsFile),
    NumProc = hostPlatform@numCores,
    workflow_name = workFlow
  )

  job <- SimpleNlmeJob(
    jobType = "Estimation",
    localDir = workingDir,
    remoteDir = workingDir,
    host = hostPlatform,
    argsList = argsList,
    argsFile = names(argsFile),
    workflow = workFlow,
    runInBackground = runInBackground
  )

  .log_Execution(Model = model,
                 EngineParams = params,
                 RunMode = "Simple",
                 Host = hostPlatform)

  status <- executeJob(job)

  if (runInBackground) {
    .report_BackgroundJob(hostPlatform@isLocal,
                          LocalWorkingDir = workingDir,
                          RemoteDir = hostPlatform@sharedDirectory)
    status
  } else {
    result_list <- .get_resultList(workingDir,
                                   model@dataset@colDefFile,
                                   params@method,
                                   model@structuralParams,
                                   model@secondaryParameters)

    result_list
  }
}

Try the Certara.RsNLME package in your browser

Any scripts or data that you put into this service are public.

Certara.RsNLME documentation built on April 3, 2025, 11:04 p.m.