diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2015-10-19 16:10:34 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2015-10-19 16:10:34 +0200 |
commit | 2ded0424ba1a2ad6d6e265dd785b9c5f54d53319 (patch) | |
tree | 0b91bdf92765bd2c0a1f4982b3df784ae46fc89d /man/mkinds.Rd | |
parent | 76084872526d7c6fc6a48e893c8240b323d61a87 (diff) |
Add the R6 class mkinds
Diffstat (limited to 'man/mkinds.Rd')
-rw-r--r-- | man/mkinds.Rd | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/man/mkinds.Rd b/man/mkinds.Rd new file mode 100644 index 00000000..239ab328 --- /dev/null +++ b/man/mkinds.Rd @@ -0,0 +1,34 @@ +\docType{class} +\name{mkinds} +\alias{mkinds} +\title{A dataset class for mkin} +\format{An \code{\link{R6Class}} generator object.} +\usage{ +mkinds +} +\description{ +A dataset class for mkin +} +\section{Fields}{ + +\describe{ +\item{\code{title}}{A full title for the dataset} + +\item{\code{sampling}}{times The sampling times} + +\item{\code{time_unit}}{The time unit} + +\item{\code{observed}}{Names of the observed compounds} + +\item{\code{unit}}{The unit of the observations} + +\item{\code{replicates}}{The number of replicates} + +\item{\code{data}}{A dataframe with at least the columns name, time and value +in order to be compatible with mkinfit} +}} +\examples{ +mds <- mkinds$new("FOCUS A", FOCUS_2006_A) +} +\keyword{datasets} + |