Description Usage Arguments Value Author(s) References See Also
These functions acquire omega or sigma covariance matrix elements for a NONMEM 7 run
and return them as a matrix or calculate the corresponding correlation matrix.
Arguments run
and project
are used to calculate
the .ext file name, which is read into memory as a pxml object, and then
converted to unilog format. Directly supplying extfile, pxml, or unilog renders
all previous arguments moot. Not vectorized: run should be scalar.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | unilogcov(
pattern,
run=0,
project=getwd(),
tool='nm7',
extfile=file.path(project,run,paste(run,'ext',sep='.')),
pxml=as.pxml.ext(extfile),
unilog=as.unilog.pxml(x=pxml,run=run,tool=tool,...),
...
)
unilogcor(
pattern,
run=0,
project=getwd(),
tool='nm7',
extfile=file.path(project,run,paste(run,'ext',sep='.')),
pxml=as.pxml.ext(extfile),
unilog=as.unilog.pxml(x=pxml,run=run,tool=tool,...),
...
)
omegacov(run,project=getwd(),...)
sigmacov(run,project=getwd(),...)
omegacor(run,project=getwd(),...)
sigmacor(run,project=getwd(),...)
|
pattern |
a pattern to seek in the parameter column of a unilog (anchored at the start of each string) |
run |
name (number) of a run |
project |
project directory (parent of run directory) |
tool |
largely irrelevant; only 'nm7' is supported |
extfile |
name of .ext file, e.g. run.ext |
pxml |
internal xml format for parameter data |
unilog |
unilog format; as returned invisibly by |
... |
passed to unilogcor, else unused |
correlation matrix
Tim Bergsma
http://metrumrg.googlecode.com
cov2cor
rlog
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.