Dear all,
I’m doing a IV regression with the endog(varlist_en) option and cluster at country level.
However, the overidentification statistic and the Durbin-Wu-Hausman statistic can’t be reported because
Therefore, I tried the partial option to solve this problem.
However, this does not change my problem, the error message is still the same.
I also tried partial(_cons) as suggested by help ivreg2, but with the same result.
I’m doing a IV regression with the endog(varlist_en) option and cluster at country level.
However, the overidentification statistic and the Durbin-Wu-Hausman statistic can’t be reported because
Warning: estimated covariance matrix of moment conditions not of full rank.
overidentification statistic not reported, and standard errors and
model tests should be interpreted with caution.
Possible causes:
number of clusters insufficient to calculate robust covariance matrix
singleton dummy variable (dummy with one 1 and N-1 0s or vice versa)
partial option may address problem
overidentification statistic not reported, and standard errors and
model tests should be interpreted with caution.
Possible causes:
number of clusters insufficient to calculate robust covariance matrix
singleton dummy variable (dummy with one 1 and N-1 0s or vice versa)
partial option may address problem
Code:
xi: ivreg2 lnGermanFDIs lnIPRP lnInfrastructureIndex lnCapitalLaborRatios lnQualityofPublicSchools lnOrganizedCrimeIndex lnLawmakinginstitutionquality lnDistancekm Commonlanguage i.Country i.Year i.Industry (lnGDP lnEnvPolicyIndex lnTariffRate = Tractorsagriculturalworker Landagriculturalworker Regionalcapitallaborratios RegionalOrganizedCrime Regionalpublicschoolquality Regionalinfrastructurequality Regionaltractorsagriculturalwo Regionallandagriculturalworker), partial(lnIPRP lnInfrastructureIndex lnCapitalLaborRatios lnQualityofPublicSchools lnOrganizedCrimeIndex lnLawmakinginstitutionquality lnDistancekm Commonlanguage) robust cluster(Countryj) endog(lnGDP lnEnvPolicyIndex lnTariffRate)
I also tried partial(_cons) as suggested by help ivreg2, but with the same result.
Comment