Read (single or) multiple NONMEM tables from a single file
read_nm_multi_table( fileName, header = TRUE, ..., simplify = TRUE, table_start_pattern = "^TABLE NO" )
fileName
: The filename to read fromheader, ...
: Arguments passed to read.tablesimplify
: If a single table is present, return a data.frame instead of a list of data.frames?table_start_pattern
: What should be found to start a new table?A list of data.frames, or if only one is present and simplify=TRUE, a data.frame.
## Not run: read_nm_multi_table("run1.cov", row.names=1) ## End(Not run)
Other NONMEM reading: plot_scm()
, read_nm_all()
, read_nmcov()
, read_nmext()
, read_nmtables()
, read_nm()
, read_scm()
Bill Denney