aboutsummaryrefslogblamecommitdiff
path: root/R/parms.mkinfit.R
blob: 250d9d1fd44baccdedd7a4032b9dab9d3e3fcf4d (plain) (tree)























                                                                                               
#' Extract model parameters from mkinfit models
#'
#' 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.
#' 
#' @param object A fitted model object
#' @param complete Unused argument for compatibility with the generic coef function from base R
#' @return A numeric vector of fitted model parameters
#' @export
parms <- function(object, ...)
{
  UseMethod("parms", object)
}

#' @param transformed Should the parameters be returned
#'   as used internally during the optimisation?
#' @rdname parms
#' @export
parms.mkinfit <- function(object, transformed = FALSE, ...)
{
  if (transformed) object$par
  else c(object$bparms.optim, object$errparms)
}

Contact - Imprint