aboutsummaryrefslogtreecommitdiff
path: root/man/parms.Rd
blob: 87e2378194e26e266a6d5fc80d05d9523d0b7f57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/parms.mkinfit.R
\name{parms}
\alias{parms}
\alias{parms.mkinfit}
\alias{parms.mmkin}
\title{Extract model parameters from mkinfit models}
\usage{
parms(object, ...)

\method{parms}{mkinfit}(object, transformed = FALSE, ...)

\method{parms}{mmkin}(object, transformed = FALSE, ...)
}
\arguments{
\item{object}{A fitted model object. Methods are implemented for
\code{\link[=mkinfit]{mkinfit()}} objects and for \code{\link[=mmkin]{mmkin()}} objects.}

\item{\dots}{Not used}

\item{transformed}{Should the parameters be returned
as used internally during the optimisation?}
}
\value{
For mkinfit objects, a numeric vector of fitted model parameters.
For mmkin row objects, a matrix with the parameters with a
row for each dataset. If the mmkin object has more than one row, a list of
such matrices is returned.
}
\description{
This function always returns degradation model parameters as well as error
model parameters, in order to avoid working with a fitted model without
considering the error structure that was assumed for the fit.
}
\examples{
fit <- mkinfit("SFO", FOCUS_2006_C)
parms(fit)
parms(fit, transformed = TRUE)
ds <- lapply(experimental_data_for_UBA_2019[6:10],
 function(x) subset(x$data[c("name", "time", "value")]))
names(ds) <- paste("Dataset", 6:10)
fits <- mmkin(c("SFO", "FOMC", "DFOP"), ds, quiet = TRUE)
parms(fits["SFO", ])
parms(fits[, 2])
parms(fits)
parms(fits, transformed = TRUE)
}

Contact - Imprint