View source: R/read_nmtables.R
read_nmtables | R Documentation |
Reads NONMEM output tables.
read_nmtables(
tableFiles = NULL,
runNo = NULL,
tabSuffix = "",
tableNames = c("sdtab", "mutab", "patab", "catab", "cotab", "mytab", "extra", "xptab"),
quiet = FALSE,
directory = NULL,
output_type = c("data.frame", "list"),
...
)
tableFiles |
NONMEM table files to be read. |
runNo |
Run number. |
tabSuffix |
Table file suffix. |
tableNames |
List of root table names, using the Xpose naming convention as the default. |
quiet |
Flag for displaying intermediate output. |
directory |
The directory to look for files within. If NULL, uses the current directory. |
output_type |
Should output be a "data.frame" where all results are merged or a "list" of data.frames. |
... |
Passed to each of the read functions (ignored in the functions). |
A data.frame or list of data.frames depending on the
output_type
argument.
Adapted from Xpose 4 (https://CRAN.R-project.org/package=xpose4).
Bill Denney, Justin Wilkins, Niclas Jonsson, Andrew Hooker
NONMEM (https://www.iconplc.com/innovation/nonmem/)
Jonsson EN, Karlsson MO. Xpose–an S-PLUS based population pharmacokinetic/pharmacodynamic model building aid for NONMEM. Comput Methods Programs Biomed. 1999 Jan;58(1):51-64
Other NONMEM reading:
plot_scm()
,
read_nm_all()
,
read_nm_multi_table()
,
read_nmcov()
,
read_nmext()
,
read_nm()
,
read_scm()
## Not run:
tables <- read_nmtables(runNo=315)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.