Hello users
I'm looking to see if it is possible to test for trend among coefficients after fitting a regression model. For example using an artifactual example:
Region has 4 categories and I might, for example, wish to test whether the effect associated with region 2 on the outcome >= the effect of region 3 >= effect on region 1 (0 in this instance as it's the reference category). I'm only testing effects associated with select categories and not all categories of region. The exact post hoc hypotheses reflect substantive theory underlying the actual model fitting process.
The Stata FAQ
https://www.stata.com/support/faqs/s...-coefficients/
allows for testing whether one effect is greater than another, but my reading is that this approach can't be expanded as above as the Wald chi-squared degrees of freedom with be greater than 1 thus violating the distributional assumptions. Is such an approach possible? I would conventionally define my null hypothesis such that the effects do not vary significantly between each other and proceed from there, but am exploring whether the above approach is possible. I would be interested to hear if anyone has tried something similar. Thank you.
I'm looking to see if it is possible to test for trend among coefficients after fitting a regression model. For example using an artifactual example:
Code:
sysuse citytemp.dta , clear regress tempjuly i.region
The Stata FAQ
https://www.stata.com/support/faqs/s...-coefficients/
allows for testing whether one effect is greater than another, but my reading is that this approach can't be expanded as above as the Wald chi-squared degrees of freedom with be greater than 1 thus violating the distributional assumptions. Is such an approach possible? I would conventionally define my null hypothesis such that the effects do not vary significantly between each other and proceed from there, but am exploring whether the above approach is possible. I would be interested to hear if anyone has tried something similar. Thank you.
Comment