Method to get the names of ill-defined parameters

illparms(object, ...)

# S3 method for mkinfit
illparms(object, conf.level = 0.95, ...)

# S3 method for mmkin
illparms(object, conf.level = 0.95, ...)

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

Arguments

object

The object to investigate

...

For potential future extensions

conf.level

The confidence level for checking p values

x

The object to be printed

Value

For mkinfit objects, a character vector of parameter names For mmkin objects, an object of class 'illparms.mmkin' with a suitable printing method.

Examples

fit <- mkinfit("FOMC", FOCUS_2006_A, quiet = TRUE)
illparms(fit)
#> [1] "parent_0" "alpha"    "beta"     "sigma"   
# \dontrun{
fits <- mmkin(
  c("SFO", "FOMC"),
  list("FOCUS A" = FOCUS_2006_A,
       "FOCUS C" = FOCUS_2006_C),
  quiet = TRUE)
illparms(fits)
#>       dataset
#> model  FOCUS A                      FOCUS C
#>   SFO                                      
#>   FOMC parent_0, alpha, beta, sigma        
# }