Learn R Programming

Certara.RsNLME (version 3.1.0.1)

print.SimpleNlmeJob: Print generic for class Simple.NlmeJob

Description

Reads progress file and prints out its contents. Applicable to remote jobs or jobs running in backgroud.

Usage

# S3 method for SimpleNlmeJob
print(x, ...)

Value

NULL

Arguments

x

Handle to an NLME job

...

Arguments passed to methods.

Examples

Run this code
if (FALSE) {
model <- pkmodel(
  parameterization = "Clearance",
  numCompartments = 2,
  data = pkData,
  ID = "Subject",
  Time = "Act_Time",
  A1 = "Amount",
  CObs = "Conc",
  workingDir = tempdir()
  )
 host <- hostParams(sharedDirectory = tempdir(),
                    parallelMethod = "None",
                    hostName = "local",
                    numCores = 1)
if (.Platform$OS.type == "unix") {
# background is not supported on Windows
  job <- fitmodel(model,
                  numIterations = 3,
                  hostPlatform = host,
                  runrunInBackground = TRUE)
  print(job)
}
}

Run the code above in your browser using DataLab