When I fit Limited Information Maximum Likelihood regression model, say
ivregress liml price (mpg =head trunk weight)
ereturn list
there is no e(ll), the maximised likelihood is missing in what ivregress liml returns.
Then likelihood ratio testing becomes impossible:
. qui ivregress liml price (mpg =head trunk weight)
. est sto full
. qui ivregress liml price
. lrtest full .
full does not contain scalar e(ll)
r(498);
This is puzzling. The estimator is called Limited Information Maximum Likelihood, and yet it does not return a value for the maximused Likelihood...
( I understand that there are at least two ways how to solve the problem. One of them is a closed form solution to an eigen value problem. But still we are finding a solution to a maximum likelihood problem and the maximised likelihood is an important quantity that should be recoverable.)
My question is how can I recover the maximised value of the likelihood? How can I do likelihood ratio testing after ivregress liml?
ivregress liml price (mpg =head trunk weight)
ereturn list
there is no e(ll), the maximised likelihood is missing in what ivregress liml returns.
Then likelihood ratio testing becomes impossible:
. qui ivregress liml price (mpg =head trunk weight)
. est sto full
. qui ivregress liml price
. lrtest full .
full does not contain scalar e(ll)
r(498);
This is puzzling. The estimator is called Limited Information Maximum Likelihood, and yet it does not return a value for the maximused Likelihood...
( I understand that there are at least two ways how to solve the problem. One of them is a closed form solution to an eigen value problem. But still we are finding a solution to a maximum likelihood problem and the maximised likelihood is an important quantity that should be recoverable.)
My question is how can I recover the maximised value of the likelihood? How can I do likelihood ratio testing after ivregress liml?
Comment