Skip to content

Commit

Permalink
::document() update
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfidler committed Jun 23, 2023
1 parent 705dc12 commit af35d3b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions R/rxSolve.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,15 @@ rxSolve.nonmem2rx <- function(object, params = NULL, events = NULL,
rate2 = TRUE, dur2 = TRUE), resample = NULL, resampleID = TRUE,
maxwhile = 1e+05, atolSens = 1e-08, rtolSens = 1e-06, ssAtolSens = 1e-08,
ssRtolSens = 1e-06, simVariability = NA, nLlikAlloc = NULL,
useStdPow = FALSE) {
useStdPow = FALSE, naTimeHandle = c("ignore", "warn", "error")) {
if (missing(covsInterpolation)) {
covsInterpolation <- "nocb"
.minfo("using nocb interpolation like NONMEM, specify directly to change")
}
if (missing(safeZero)) {
.minfo("using safeZero=FALSE since NONMEM does not use protection by default")
safeZero = TRUE
}
if (!missing(nStud)) {
if (missing(dfSub)) {
if (!is.null(object$dfSub)) {
Expand Down Expand Up @@ -124,5 +128,5 @@ rxSolve.nonmem2rx <- function(object, params = NULL, events = NULL,
resampleID = resampleID, maxwhile = maxwhile, atolSens = atolSens,
rtolSens = rtolSens, ssAtolSens = ssAtolSens, ssRtolSens = ssRtolSens,
simVariability = simVariability, nLlikAlloc = nLlikAlloc,
useStdPow = useStdPow)
useStdPow = useStdPow, naTimeHandle = naTimeHandle)
}

0 comments on commit af35d3b

Please sign in to comment.