aboutsummaryrefslogtreecommitdiff
path: root/R/mmkin.R
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2015-06-26 08:50:13 +0200
committerJohannes Ranke <jranke@uni-bremen.de>2015-06-26 10:43:55 +0200
commit4c69847346a9c254e4e803b6987a63e3fd9c14ae (patch)
tree9e8d492f4f7d470f6feeaf787cc404dad366fadd /R/mmkin.R
parentbfa3596e4ee5be3090b27dcadc20ada6194ddaef (diff)
Subsetting and plotting for mmkin objects
Including documentation and documentation improvements for mmkin().
Diffstat (limited to 'R/mmkin.R')
-rw-r--r--R/mmkin.R28
1 files changed, 28 insertions, 0 deletions
diff --git a/R/mmkin.R b/R/mmkin.R
index 1e1c4a33..be4526af 100644
--- a/R/mmkin.R
+++ b/R/mmkin.R
@@ -1,3 +1,24 @@
+# Copyright (C) 2015 Johannes Ranke
+# Contact: jranke@uni-bremen.de
+# The summary function is an adapted and extended version of summary.modFit
+# from the FME package, v 1.1 by Soetart and Petzoldt, which was in turn
+# inspired by summary.nls.lm
+
+# This file is part of the R package mkin
+
+# mkin is free software: you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation, either version 3 of the License, or (at your option) any later
+# version.
+
+# This program is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+
+# You should have received a copy of the GNU General Public License along with
+# this program. If not, see <http://www.gnu.org/licenses/>
+
mmkin <- function(models = c("SFO", "FOMC", "DFOP"), datasets,
cores = round(detectCores()/2), cluster = NULL, ...)
{
@@ -44,3 +65,10 @@ mmkin <- function(models = c("SFO", "FOMC", "DFOP"), datasets,
class(results) <- "mmkin"
return(results)
}
+
+"[.mmkin" <- function(x, i, j, ..., drop = FALSE) {
+ class(x) <- NULL
+ x_sub <- x[i, j, drop = drop]
+ if (!drop) class(x_sub) <- "mmkin"
+ return(x_sub)
+}

Contact - Imprint