I tried to do LR test after excluding meanyearsedu (because in the linear regression result, it's insignificant). Based on the result, the model with fpaidemployed is better than one without it.
Code:
quietly reghdfe pop65 lntfr lifeexp lngdpcap fpaidemployed, absorb(prov_id year) estimates store model1 quietly reghdfe pop65 lntfr lifeexp lngdpcap, absorb(prov_id year) estimates store model0 lrtest model0 model1
Code:
.. lrtest model0 model1 Likelihood-ratio test Assumption: model0 nested within model1 LR chi2(1) = 9.03 Prob > chi2 = 0.0027
Comment