From cff25a78e0e5a9d46db575b1ae3b02ace560aaf6 Mon Sep 17 00:00:00 2001
From: Johannes Ranke Method to get convergence information The object to investigate For potential future extensions The object to be printed Method to get the names of ill-defined parameters The object to investigate For potential future extensions The confidence level for checking p values The object to be printed For mkinfit objects, a character vector of parameter names
+For mmkin objects, an object of class 'illparms.mmkin' with a
+suitable printing method.convergence(object, ...)
+
+# S3 method for mmkin
+convergence(object, ...)
+
+# S3 method for convergence.mmkin
+print(x, ...)
Arguments
+ 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
+ Value
+
+
+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
+# }
+
Calculate the AIC for a column of an mmkin object
Method to get convergence information
Method to get the names of ill-defined parameters
Summary method for class "mmkin"
Create and work with nonlinear mixed effects models
diff --git a/docs/reference/summary.mkinfit.html b/docs/reference/summary.mkinfit.html index 6d816366..17ecdfe4 100644 --- a/docs/reference/summary.mkinfit.html +++ b/docs/reference/summary.mkinfit.html @@ -21,7 +21,7 @@ values."> + + +Shows convergence information on the mkinfit objects contained in the object +and gives an overview of ill-defined parameters calculated by illparms.
+an object of class mmkin
confidence level for testing parameters
optional arguments passed to methods like print
.
an object of class summary.mmkin
.
number of digits to use for printing
+fits <- mmkin(
+ c("SFO", "FOMC"),
+ list("FOCUS A" = FOCUS_2006_A,
+ "FOCUS C" = FOCUS_2006_C),
+ quiet = TRUE, cores = 1)
+ summary(fits)
+#> Error model: Constant variance
+#> Fitted in 0.607 s
+#>
+#> Convergence:
+#> dataset
+#> model FOCUS A FOCUS C
+#> SFO OK OK
+#> FOMC OK OK
+#>
+#> OK: No warnings
+#>
+#> Ill-defined parameters:
+#> dataset
+#> model FOCUS A FOCUS C
+#> SFO
+#> FOMC parent_0, alpha, beta, sigma
+
+