diff options
author | jranke <jranke@edb9625f-4e0d-4859-8d74-9fd3b1da38cb> | 2013-10-08 14:55:09 +0000 |
---|---|---|
committer | jranke <jranke@edb9625f-4e0d-4859-8d74-9fd3b1da38cb> | 2013-10-08 14:55:09 +0000 |
commit | db403f024cc7c6b8b550897a45d93efc9f047e26 (patch) | |
tree | 4d1e11455ffafa6ce803afe72b9ee36862689f52 /man | |
parent | c27a31d947b4a74d1b560d56cf3887e39336999c (diff) |
- Added the possibility to specify the observed variable in mkinmod in a checklist
- Added the spec list the the mkinmod objects
- It seems that the GUI model editor is fully functional
- Version bump due to the changes in the mkinmod function arguments, thought they are backward compatible
git-svn-id: svn+ssh://svn.r-forge.r-project.org/svnroot/kinfit/pkg/mkin@107 edb9625f-4e0d-4859-8d74-9fd3b1da38cb
Diffstat (limited to 'man')
-rw-r--r-- | man/mkinmod.Rd | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/man/mkinmod.Rd b/man/mkinmod.Rd index b528d83..76127c5 100644 --- a/man/mkinmod.Rd +++ b/man/mkinmod.Rd @@ -9,7 +9,7 @@ kinetic model type and reaction or transfer to other observed compartments.
}
\usage{
-mkinmod(..., use_of_ff = "min")
+mkinmod(..., use_of_ff = "min", speclist = NULL)
}
\arguments{
\item{...}{
@@ -33,6 +33,10 @@ mkinmod(..., use_of_ff = "min") fractions is made in order to avoid fitting the product of formation fractions
and rate constants. If "max", formation fractions are always used.
}
+ \item{speclist}{
+ The specification of the observed variables and their submodel types and
+ pathways can be given as a single list using this argument. Default is NULL.
+ }
}
\value{
A list of class \code{mkinmod} for use with \code{\link{mkinfit}}, containing
@@ -55,6 +59,5 @@ SFO <- mkinmod(parent = list(type = "SFO")) SFO_SFO <- mkinmod(
parent = list(type = "SFO", to = "m1"),
m1 = list(type = "SFO"))
-
}
\keyword{ models }
|