Using Stata 15.1 I have estimated a generalised ordered logit using the gologit2 command, with the coefficients expressed as odds ratios. I am interested in looking at whether single changes in an interacted 3-way factor variable are statistically significant. The full regression output is huge so I just include a small example below that follows on to my lincom example
I am trying to using the lincom command to examine the odds ratios and calculate whether or not the difference between them is statistically significant
The command I enter is
The [1] specifies that I am estimating this difference using the odds ratios from the first equation of the gologit. This is what I have used before with linear regressions and single equation regressions and it usually provides me with the correctly calculated difference and whether or not the difference is statistically significant. The output I get is
I may be missing something but this doesn't look correct to me. The difference between the odds ratios isn't correct (subtracting the two from each other should give, 0.202308). I don't know where the 1.616235 is coming from. Is there any way to see the working behind the calculation, i.e. which coefficients it subtracted to yield this result. I also noticed that when I try and use the lincom command to estimate differences in the odds ratios from other equations within the the gologit (i.e. equation 2), the number highlighted in bold within my lincom output listed above does not change to 2. Is this also an issue?
Any guidance in either what I am missing or what I am doing wrong would be really appreciated.
Code:
ordered_salary | Odds Ratio Std. Err. z P>|z| [95% Conf. Interval]
-------------------------------------+----------------------------------------------------------------
1 |
x1#x2#x3 |
2 1 1 | 1.25474 .098736 2.88 0.004 1.075406 1.46398
3 1 1 | 1.457048 .199831 2.74 0.006 1.113611 1.906402
The command I enter is
Code:
lincom [1]3.x1#1.x2#1.x3 - [1]2.x1#1.x2#1.x3, or
Code:
------------------------------------------------------------------------------
ordered_wa~s | Odds Ratio Std. Err. z P>|z| [95% Conf. Interval]
-------------+----------------------------------------------------------------
(1) | 1.161235 .1714028 1.01 0.311 .86952 1.550818
------------------------------------------------------------------------------
Any guidance in either what I am missing or what I am doing wrong would be really appreciated.

Comment