calculateAIC {pulsedSilac} | R Documentation |
Calculates the AIC for each of the computed models. Requires that
modelTurnover
is run with reuturnModel = TRUE
.
calculateAIC(modelList, smallSampleSize = TRUE)
modelList |
a |
smallSampleSize |
a |
The following formulas are used to compute the AIC and AICc (small sample size correction):
a list
with the model metrics (the given input) plus a matrix
named "AIC" with the AIC for each value
data('wormsPE') wormsPE <- calculateIsotopeFraction(wormsPE, ratioAssay = 'ratio') modelList <- modelTurnover(x = wormsPE[1:10], assayName = 'fraction', formula = 'fraction ~ 1 - exp(-k*t)', start = list(k = 0.02), mode = 'protein', robust = FALSE, returnModel = TRUE) modelList <- calculateAIC(modelList, smallSampleSize = TRUE)