Hi,
I am using an ordered logit/probit model (ologit / oprobit) and would like to examine whether there is a structural break that affects two of my variables. My understanding is that a LR test is well-equipped to do this, but I am not sure how I should handle my other (control) variables re: the restricted and unrestricted models.
For example; my variables follow:
or just...
Please also let me know if the use of a LR test in this context is misguided.
Thanks.
I am using an ordered logit/probit model (ologit / oprobit) and would like to examine whether there is a structural break that affects two of my variables. My understanding is that a LR test is well-equipped to do this, but I am not sure how I should handle my other (control) variables re: the restricted and unrestricted models.
For example; my variables follow:
- y = regressand
- x1 x2 = variables of interest
- break = dummy variable that is 1 for dates after my expected structural break
- controls = several control variables
Code:
ologit y break##(x1 x2 controls) estimates store unrestricted ologit y x1 x2 break#(controls) estimates store restricted lrtest unrestricted restricted
Code:
ologit y break##(x1 x2 controls) estimates store unrestricted ologit y x1 x2 controls estimates store restricted lrtest unrestricted restricted
Thanks.