diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2019-10-26 20:50:09 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2019-10-26 20:50:09 +0200 |
commit | 7b7729694363515007193d1c3e29e9b76271abb3 (patch) | |
tree | 3aa572fb56d26d4ad53463e320ee9e75ff4a2321 /man/parms.Rd | |
parent | af2e1540cdad2fd00bb6216a38a754ff748629ad (diff) |
parms and confint methods
The confint method can do profile likelihood based confidence intervals!
Diffstat (limited to 'man/parms.Rd')
-rw-r--r-- | man/parms.Rd | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/man/parms.Rd b/man/parms.Rd new file mode 100644 index 00000000..6de52557 --- /dev/null +++ b/man/parms.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/parms.mkinfit.R +\name{parms} +\alias{parms} +\alias{parms.mkinfit} +\title{Extract model parameters from mkinfit models} +\usage{ +parms(object, ...) + +\method{parms}{mkinfit}(object, transformed = FALSE, ...) +} +\arguments{ +\item{object}{A fitted model object} + +\item{transformed}{Should the parameters be returned +as used internally during the optimisation?} + +\item{complete}{Unused argument for compatibility with the generic coef function from base R} +} +\value{ +A numeric vector of fitted model parameters +} +\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. +} |