Method to get status information for fit array objects
     
    
    status(object, ...)
# S3 method for mmkin
status(object, ...)
# S3 method for status.mmkin
print(x, ...)
# S3 method for mhmkin
status(object, ...)
# S3 method for status.mhmkin
print(x, ...)
 
    
    Arguments
    - object
- The object to investigate 
- ...
- For potential future extensions 
- x
- The object to be printed 
 
    
    Value
    
An object with the same dimensions as the fit array
suitable printing method.
     
    
    Examples
    # \dontrun{
fits <- mmkin(
  c("SFO", "FOMC"),
  list("FOCUS A" = FOCUS_2006_A,
       "FOCUS B" = FOCUS_2006_C),
  quiet = TRUE)
status(fits)
#>       dataset
#> model  FOCUS A FOCUS B
#>   SFO  OK      OK     
#>   FOMC OK      OK     
#> 
#> OK: No warnings
# }