I am running some OLS estimation (- areg-) on some panel data set.
I would like to decide between different aggregation levels of the data using AIC and BIC
Aggregation level 1: panel id: countries (e.g, Germany), time: weeks
Aggregation level 2: panel id: regions (e.g., Europe), time : weeks
The number of obs is significantly reduced on level 2. I run the same estimation command on both aggregation levels (- areg - ) except the difference in the panel-id absorbed.
I get the following AIC & BIC results ( - estat ic-):
Level 1:
Level 2:
Level 1 aggregation is suggested based on AIC & BIC
Questions:
1) Are AIC & BIC appropriate to decide between different aggregation levels of the data?
2) I am thinking about running a regression on each panal separately ending up with time series data. Are AIC & BIC also suggested to decide between time series and panel data structure?
Thanks for any comments in advance.
Christian
I would like to decide between different aggregation levels of the data using AIC and BIC
Aggregation level 1: panel id: countries (e.g, Germany), time: weeks
Aggregation level 2: panel id: regions (e.g., Europe), time : weeks
The number of obs is significantly reduced on level 2. I run the same estimation command on both aggregation levels (- areg - ) except the difference in the panel-id absorbed.
I get the following AIC & BIC results ( - estat ic-):
Level 1:
Code:
. estat ic Akaike's information criterion and Bayesian information criterion ----------------------------------------------------------------------------- Model | Obs ll(null) ll(model) df AIC BIC -------------+--------------------------------------------------------------- . | 1,130,616 80749.49 203988.7 13 -407951.4 -407796.2 ----------------------------------------------------------------------------- Note: N=Obs used in calculating BIC; see [R] BIC note.
Code:
. estat ic Akaike's information criterion and Bayesian information criterion ----------------------------------------------------------------------------- Model | Obs ll(null) ll(model) df AIC BIC -------------+--------------------------------------------------------------- . | 167,349 35490.21 53725.38 13 -107424.8 -107294.4 ----------------------------------------------------------------------------- Note: N=Obs used in calculating BIC; see [R] BIC note.
Questions:
1) Are AIC & BIC appropriate to decide between different aggregation levels of the data?
2) I am thinking about running a regression on each panal separately ending up with time series data. Are AIC & BIC also suggested to decide between time series and panel data structure?
Thanks for any comments in advance.
Christian
Comment