I have a table of 12 series of temperature. I calculate the linear model for these 1é series with
ajust = Table[
LinearModelFit[tabmoymob[[i]], {1, x}, x], {i, 1, n1, 1}];
where n1=12; I have a good result : 
now I want calculate AIC and BIC for each models with the function Table. Can you help me? This line of code don't work :
Table[ajust[{"Aic", "BIC"}[[i]]], {i, 1, n1, 1}]