Dear Jeff,
Thank you for your reply. Please find below some tables with corresponding regression equations (I believe I included the full set of time averages everywhere) and some notes and questions along with them.
I am not sure about the preferred way to present results here, but I hope these screenshots will do.
Table 1 gives an example of FE logit versus RE CRE logit versus pooled CRE logit estimates (columns in that order).
All coefficients except the one corresponding to the 2016 dummy and the meanincome regressor are statistically insignificant. These estimates are based on the following code:
Table 1:

The FE logit estimates are based on a sample size more than half as small because of dropping the individuals with all 0 or all 1 outcomes.
Table 2 presents the equivalent for Poisson estimates for the whole sample, so not only focusing on the second stage. Despite the different properties of RE Poisson relative to linear RE models the estimates are in line with the FE ones. The p-value of pwhrs is nearly equal to 1 in the first two columns, so this imprecise estimation probably explains why the estimate is so different for the last column. But which one to trust?
Table 2:

The differences blow up when including an if lead_don > 0 condition in my code, see Table 3.
Table 3:

As a consequence, my final two-stage results including the interaction term differ quite a bit between the pooled CRE and the other two estimation methods (columns 1-3):
I understand your comment about the necessity to include the interaction term, but volbin is a dummy for engaging in volunteering last-period and this is highly correlated with my outcome variable. Column 4 stands for CRE pooled estimates without the volbin regressor and column 5 for CRE RE estimates without. Since the interaction term here is of main importance for my research, I am very curious to hear which of the presented models would be most accurate.
Table 4:

Thank you so much in advance!
Best wishes,
Lieke
Thank you for your reply. Please find below some tables with corresponding regression equations (I believe I included the full set of time averages everywhere) and some notes and questions along with them.
I am not sure about the preferred way to present results here, but I hope these screenshots will do.
Table 1 gives an example of FE logit versus RE CRE logit versus pooled CRE logit estimates (columns in that order).
All coefficients except the one corresponding to the 2016 dummy and the meanincome regressor are statistically insignificant. These estimates are based on the following code:
Code:
clogit lead_don income pwhrs i.year, group(id) robust xtlogit lead_don income pwhrs i.year i.tobs meanincome meanhrs, re vce(cluster id) logit lead_don income pwhrs i.year i.tobs meanincome meanhrs, vce(cluster id)
The FE logit estimates are based on a sample size more than half as small because of dropping the individuals with all 0 or all 1 outcomes.
Table 2 presents the equivalent for Poisson estimates for the whole sample, so not only focusing on the second stage. Despite the different properties of RE Poisson relative to linear RE models the estimates are in line with the FE ones. The p-value of pwhrs is nearly equal to 1 in the first two columns, so this imprecise estimation probably explains why the estimate is so different for the last column. But which one to trust?
Code:
xtpoisson lead_don income pwhrs i.year, fe vce(robust) xtpoisson lead_don income pwhrs i.year i.tobs meanincome meanhrs, re vce(cluster id) poisson lead_don income pwhrs i.year i.tobs meanincome meanhrs, vce(cluster id)
The differences blow up when including an if lead_don > 0 condition in my code, see Table 3.
Table 3:
As a consequence, my final two-stage results including the interaction term differ quite a bit between the pooled CRE and the other two estimation methods (columns 1-3):
Code:
egen mean_volbin = mean(volbin), by(id) gen meanvolbinxhrs = mean_volbin*meanhrs xtpoisson lead_don income pwhrs volbin 1.volbin#c.pwhrs i.year if lead_don>0, fe vce(robust) xtpoisson lead_don income pwhrs volbin 1.volbin#c.pwhrs i.year i.tobs meanincome meanhrs meanvolbinxhrs if lead_don>0, re vce(cluster id) poisson lead_don income pwhrs volbin 1.volbin#c.pwhrs i.year i.tobs meanincome meanhrs meanvolbinxhrs if lead_don>0, vce(cluster id)
Table 4:
Thank you so much in advance!
Best wishes,
Lieke
Comment