diff options
author | jranke <jranke@edb9625f-4e0d-4859-8d74-9fd3b1da38cb> | 2012-06-25 23:45:39 +0000 |
---|---|---|
committer | jranke <jranke@edb9625f-4e0d-4859-8d74-9fd3b1da38cb> | 2012-06-25 23:45:39 +0000 |
commit | 5f72a28432c024ab9d57b70e87186dcc607c0903 (patch) | |
tree | e7d30a3ef4c8c748487cbe38cb022c9f753d6df1 /man/endpoints.Rd | |
parent | 3a7751c62e369547db2048b7fc89c21b862010e9 (diff) |
- Document endpoints() function
- Fix unit tests that were broken by introduction of
the endpoints function
- Small documentation fixes
- Format output of backtransformed parameters
- Integrate snippet for making static documentation
using staticdocs by Hadley Wickham
git-svn-id: svn+ssh://svn.r-forge.r-project.org/svnroot/kinfit/pkg/mkin@41 edb9625f-4e0d-4859-8d74-9fd3b1da38cb
Diffstat (limited to 'man/endpoints.Rd')
-rw-r--r-- | man/endpoints.Rd | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/man/endpoints.Rd b/man/endpoints.Rd new file mode 100644 index 00000000..21316cf2 --- /dev/null +++ b/man/endpoints.Rd @@ -0,0 +1,33 @@ +\name{endpoints} +\alias{endpoints} +\title{ +Function to calculate endpoints for further use from kinetic models fitted with mkinfit +} +\description{ +This function calculates DT50 and DT90 values as well as formation fractions from kinetic models +fitted with mkinfit. If the SFORB model was specified for one of the parents or metabolites, +the Eigenvalues are returned. These are equivalent to the rate constantes of the DFOP model, but +with the advantage that the SFORB model can also be used for metabolites. +} +\usage{ +endpoints(fit, pseudoDT50 = FALSE) +} +\arguments{ + \item{fit}{ + An object of class \code{\link{mkinfit}}. +} + \item{pseudoDT50}{ + Should pseudoDT50 values for FOMC, DFOP and SFORB models be reported, as + recommended by the FOCUS group? Currently not implemented. +} +} +\note{ + The function is used internally by \code{\link{summary.mkinfit}}. +} +\value{ + A list with the components mentioned above. +} +\author{ + Johannes Ranke +} +\keyword{ manip } |