Dear all,
I am currently running the following regression command:
This runs through but given a small sample size statistical precision is more limited than I'd wish for.
I was wondering whether this might improve if I bootstrap, and hence tried
Regardless of whether I add the -cluster(panelvar)- as option to the bootstrap or whether I add it as option to the actual regression, I get the following error
"Repeated time values within panel. The most likely cause for this error is misspecifying the cluster(), idcluster(), or group() option."
From the bootstrap help file I could not see how else I should specify the cluster option and I did not have either of the other two.
Would anyone happen to see my mistake, or more generally have an opinion on whether this type of bootstrapping might help with statistical significance at all?
Thank you so much!
PM
I am currently running the following regression command:
Code:
reghdfe growth c.var1##c.var2, absorb(panelvar timevar) cluster(panelvar)
I was wondering whether this might improve if I bootstrap, and hence tried
Code:
bootstrap, reps(100) cluster(panelvar): reghdfe growth c.var1##c.var2, absorb(panelvar timevar)
"Repeated time values within panel. The most likely cause for this error is misspecifying the cluster(), idcluster(), or group() option."
From the bootstrap help file I could not see how else I should specify the cluster option and I did not have either of the other two.
Would anyone happen to see my mistake, or more generally have an opinion on whether this type of bootstrapping might help with statistical significance at all?
Thank you so much!
PM
Comment