From 5f9645570d8308f48a492d48f38acd0d08f7d636 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Fri, 23 Nov 2018 20:01:28 +0100 Subject: Static documentation rebuilt by pkgdown --- docs/reference/logLik.mkinfit.html | 202 +++++++++++++++++++++++++++++++++++++ 1 file changed, 202 insertions(+) create mode 100644 docs/reference/logLik.mkinfit.html (limited to 'docs/reference/logLik.mkinfit.html') diff --git a/docs/reference/logLik.mkinfit.html b/docs/reference/logLik.mkinfit.html new file mode 100644 index 00000000..1dda313f --- /dev/null +++ b/docs/reference/logLik.mkinfit.html @@ -0,0 +1,202 @@ + + + + + + + + +Calculated the log-likelihood of a fitted mkinfit object — logLik.mkinfit • mkin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ +
+
+ + +
+ +

This function simply calculates the product of the likelihood densities + calc

+ +
+ +
# S3 method for mkinfit
+logLik(object, ...)
+ +

Arguments

+ + + + + + + + + + +
object

An object of class mkinfit.

For compatibility with the generic method

+ +

Value

+ +

An object of class logLik with the number of + estimated parameters (degradation model parameters plus variance + model parameters) as attribute.

+ + +

Examples

+
sfo_sfo <- mkinmod( + parent = mkinsub("SFO", to = "m1"), + m1 = mkinsub("SFO") + )
#> Successfully compiled differential equation model from auto-generated C code.
d_t <- FOCUS_2006_D + d_t[23:24, "value"] <- c(NA, NA) # can't cope with zero values at the moment + f_nw <- mkinfit(sfo_sfo, d_t, quiet = TRUE) + f_obs <- mkinfit(sfo_sfo, d_t, reweight.method = "obs", quiet = TRUE) + f_tc <- mkinfit(sfo_sfo, d_t, reweight.method = "tc", quiet = TRUE) + AIC(f_nw, f_obs, f_tc)
#> df AIC +#> f_nw 5 204.4619 +#> f_obs 6 205.8727 +#> f_tc 6 143.8773
+
+ +
+ + +
+ + + + + + -- cgit v1.2.1