Learn R Programming

mkin (version 0.9.49.5)

AIC.mmkin: Calculated the AIC for a column of an mmkin object

Description

Provides a convenient way to compare different kineti models fitted to the same dataset.

Usage

# S3 method for mmkin
AIC(object, ..., k = 2)

Arguments

object

An object of class mmkin, containing only one column.

For compatibility with the generic method

k

As in the generic method

Value

As in the generic method (a numeric value for single fits, or a dataframe if there are several fits in the column).

Examples

Run this code
# NOT RUN {
  f <- mmkin(c("SFO", "FOMC", "DFOP"),
    list("FOCUS A" = FOCUS_2006_A,
         "FOCUS C" = FOCUS_2006_C), cores = 1, quiet = TRUE)
  AIC(f[1, "FOCUS A"]) # We get a single number for a single fit

  # For FOCUS A, the models fit almost equally well, so the higher the number
  # of parameters, the higher (worse) the AIC
  AIC(f[, "FOCUS A"])
  AIC(f[, "FOCUS A"], k = 0) # If we do not penalize additional parameters, we get nearly the same

  # For FOCUS C, the more complex models fit better
  AIC(f[, "FOCUS C"])
# }

Run the code above in your browser using DataLab