From 4c69847346a9c254e4e803b6987a63e3fd9c14ae Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Fri, 26 Jun 2015 08:50:13 +0200 Subject: Subsetting and plotting for mmkin objects Including documentation and documentation improvements for mmkin(). --- R/mmkin.R | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'R/mmkin.R') 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 + 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) +} -- cgit v1.2.1