Dear all,
I'm running a threshold regression in Stata 15.
Here are my codes:
If I want to test the equality of coefficients of L.mar_return between fen==1 and fen==2, how can I do that? I've already tried the command -suest-, but Stata reports that "unable to generate scores for model fen1"
I'm running a threshold regression in Stata 15.
Here are my codes:
- sort fen year week
- bys fen:gen i=_n
- xtset fen i,weekly
- threshold DV if fen==1,threshvars(L.mar_return) regionvars(L.DV L.mar_return)
- threshold DV if fen==2,threshvars(L.mar_return) regionvars(L.DV L.mar_return)
If I want to test the equality of coefficients of L.mar_return between fen==1 and fen==2, how can I do that? I've already tried the command -suest-, but Stata reports that "unable to generate scores for model fen1"
Comment