Dear all,
I am trying to conduct a statistical test whether the coefficients from two second-stage regressions are significantly different from each other.
My two regressions looks like:
I was trying to use the following steps:
From the last step, I got the error message saying that
Can anyone inform me how to correct my code? Thank you so much!
I am trying to conduct a statistical test whether the coefficients from two second-stage regressions are significantly different from each other.
My two regressions looks like:
Code:
ivreghdfe DISP log_ME (h_diffs =test lngdp epu_state) if log_ME>=r(p50), a(cusip st year) cluster(st_year) ivreghdfe DISP log_ME (h_diffs =test lngdp epu_state) if log_ME<r(p50), a(cusip st year) cluster(st_year)
Code:
ivreghdfe DISP log_ME (h_diffs =test lngdp epu_state) if log_ME>=r(p50), a(cusip st year) cluster(st_year) estimates store cequalzero ivreghdfe DISP log_ME (h_diffs =test lngdp epu_state) if log_ME<r(p50), a(cusip st year) cluster(st_year) estimates store cequalone suest cequalzero cequalone
cequalzero was estimated with cluster(st_year).
re-estimate without the cluster() option, and
specify the cluster() option with suest.
re-estimate without the cluster() option, and
specify the cluster() option with suest.

Comment