Dear friends,
I have six different regression columns, measuring the determinants of foreign aid flows from major European donors. I checked for multicollinearity for each time-series pooled regression model. Indeed, I want to create six different VIF tables for each regression model. Here, I provide what I want to do. Instead of providing six different VIF estimates separately, I want to merge them into one table.
Is there a way to merge them as below? I couldn't do it. I provide an example of two different multicollinearity checks.
I have six different regression columns, measuring the determinants of foreign aid flows from major European donors. I checked for multicollinearity for each time-series pooled regression model. Indeed, I want to create six different VIF tables for each regression model. Here, I provide what I want to do. Instead of providing six different VIF estimates separately, I want to merge them into one table.
Is there a way to merge them as below? I couldn't do it. I provide an example of two different multicollinearity checks.
Code:
reg logukdac2a L.logukdac2a muslim L.unchn L.logtopsevenoda l.logukexport L.logtopsevenexport , vce(cluster iso) vif eststo vif1 reg logfrancedac2a L.logfrancedac2a muslim L.unchn L.logtopsevenoda l.logfranceexport L.logtopsevenexport , vce(cluster iso) vif eststo vif2 esttab vif1 vif2 using viftables.tex

Comment