AICc | R Documentation |
Calculates corrected AIC for an 'lm' linear model object.
AICc(model)
model |
A fitted 'lm' object. |
The numeric value of of corrected AIC for the supplied linear model object.
#generate data
set.seed(9122023)
data <- data.frame(x = rnorm(100), y = rnorm(100))
AICc(lm(y~x, data = data))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.