Method to get convergence information

convergence(object, ...)

# S3 method for mmkin
convergence(object, ...)

# S3 method for convergence.mmkin
print(x, ...)

Arguments

object

The object to investigate

...

For potential future extensions

x

The object to be printed

Value

For mkinfit objects, a character vector containing For mmkin objects, an object of class 'convergence.mmkin' with a suitable printing method.

Examples

# \dontrun{
fits <- mmkin(
  c("SFO", "FOMC"),
  list("FOCUS A" = FOCUS_2006_A,
       "FOCUS B" = FOCUS_2006_C),
  quiet = TRUE)
convergence(fits)
#>       dataset
#> model  FOCUS A FOCUS B
#>   SFO  OK      OK     
#>   FOMC OK      OK     
#> 
#> OK: No warnings
# }