tabulate.parameters: Tabulate the population parameter estimates

View source: R/tabulate.parameters.R

tabulate.parametersR Documentation

Tabulate the population parameter estimates

Description

This function provides a summary of the model's parameter estimates and precision.

Usage

tabulate.parameters(object, prompt = FALSE, outfile = NULL, dir = "")

Arguments

object

An xpose.data object.

prompt

Ask before printing.

outfile

file to output to (NULL means screen).

dir

Which directory is the NONMEM output file located. "" means the current working directory getwd().

Value

A table summarizing the parameters and their precision.

Author(s)

Niclas Jonsson, Andrew Hooker & Justin Wilkins

See Also

Other data functions: add_transformed_columns, change_graphical_parameters, change_misc_parameters, compute.cwres(), data.checkout(), data_extract_or_assign, db.names(), export.graph.par(), export.variable.definitions(), import.graph.par(), import.variable.definitions(), make.sb.data(), nsim(), par_cov_summary, read.TTE.sim.data(), read.nm.tables(), read_NM_output, read_nm_table(), simprazExample(), xlabel(), xpose.data, xpose.print(), xpose4-package, xsubset()

Examples


od = setwd(tempdir()) # move to a temp directory
(cur.files <- dir()) # current files in temp directory

simprazExample(overwrite=TRUE) # write files
(new.files <- dir()[!(dir() %in% cur.files)])  # what files are new here?
xpdb <- xpose.data(1) # read in files to xpose database

tabulate.parameters(xpdb)

file.remove(new.files) # remove these files
setwd(od)  # restore working directory


xpose4 documentation built on May 31, 2022, 5:07 p.m.