diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2022-07-21 17:15:12 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2022-07-21 17:43:16 +0200 |
commit | b703ee38ffc8877be843cf5a557dd9c32c54f977 (patch) | |
tree | 4da8adf610a1e431f514efc256f44bb7abdec4ca /man/summary.mmkin.Rd | |
parent | ad6ef5013dce7ef1ef9bbcadbd278b71da9b6f72 (diff) |
Summary method for mmkin objects
Also, add a method for gathering convergence information
and a method for gathering information on ill-defined parameters
Diffstat (limited to 'man/summary.mmkin.Rd')
-rw-r--r-- | man/summary.mmkin.Rd | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/man/summary.mmkin.Rd b/man/summary.mmkin.Rd new file mode 100644 index 00000000..69245621 --- /dev/null +++ b/man/summary.mmkin.Rd @@ -0,0 +1,36 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/summary.mmkin.R +\name{summary.mmkin} +\alias{summary.mmkin} +\alias{print.summary.mmkin} +\title{Summary method for class "mmkin"} +\usage{ +\method{summary}{mmkin}(object, conf.level = 0.95, ...) + +\method{print}{summary.mmkin}(x, digits = max(3, getOption("digits") - 3), ...) +} +\arguments{ +\item{object}{an object of class \link{mmkin}} + +\item{conf.level}{confidence level for testing parameters} + +\item{\dots}{optional arguments passed to methods like \code{print}.} + +\item{x}{an object of class \code{summary.mmkin}.} + +\item{digits}{number of digits to use for printing} +} +\description{ +Shows convergence information on the \link{mkinfit} objects contained in the object +and gives an overview of ill-defined parameters calculated by \link{illparms}. +} +\examples{ + +fits <- mmkin( + c("SFO", "FOMC"), + list("FOCUS A" = FOCUS_2006_A, + "FOCUS C" = FOCUS_2006_C), + quiet = TRUE, cores = 1) + summary(fits) + +} |