I think this should be easy, but it seems it is not?
Lets say we run this regression:
I would like to test if: mpg > weight.
I know I can do:
But why can't I:
Additionally, if possible, I would also like to test the ratio of the two variables:
Any help is greatly appreciated. Thanks in advance.
Lets say we run this regression:
Code:
sysuse auto, clear reg price mpg weight displacement
I know I can do:
Code:
test (mpg = weight)
Code:
test (mpg > weight)
Code:
test (mpg/weight = 1) test (mpg/weight > 1)
Comment