It is possible to compare the multiple regression models using AIC scores, with the models ordered from best-supported to worst-supported?
Here is my code
library(data.table)
Regressions<-
data.table(February)[,
.(Lm = lapply(.SD, function(x) summary(lm(February$PPNA ~ February$Acum1 + x)))),
.SDcols = 80:157]