logLik.mkinfit.Rd
This function simply calculates the product of the likelihood densities calc
# S3 method for mkinfit logLik(object, ...)
object | An object of class |
---|---|
… | For compatibility with the generic method |
An object of class logLik
with the number of
estimated parameters (degradation model parameters plus variance
model parameters) as attribute.
#>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