R/get_covtime.R

Defines functions get_covtime

get_covtime <- function(nlme7engineLines) {
  covtimeLine <- nlme7engineLines[grep("stderr runtime", nlme7engineLines)]
  if (length(covtimeLine) > 0) {
    covtime <-
      as.numeric(unlist(strsplit(covtimeLine, split = "="))[[2]])
  } else {
    covtime <- "na"
  }

  covtime
}

Try the Certara.Xpose.NLME package in your browser

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

Certara.Xpose.NLME documentation built on April 3, 2025, 7:45 p.m.