I am using Stata 14.2 to run a multinomal logit (mlogit). After running the model I am using margins to get the predicted probabilities for certain values of my independent variables.
An issue that is cropping up is that the lower bound of the confidence interval of the predicted probabilities is negative, and apparently not bound to be between 0 or above.
As an example of what is happening this shows something similar (nonsense example)
sysuse auto, clear
mlogit rep78 price i.foreign
margins foreign, predict(outcome(5))
Running this we see that the confidence interval of the predicted probabiliy for Domestic and outcome 5 is -0.015 to 0.098
Is there any way to "correct" the confidence interval?
Thank you
Anna Reimondos
An issue that is cropping up is that the lower bound of the confidence interval of the predicted probabilities is negative, and apparently not bound to be between 0 or above.
As an example of what is happening this shows something similar (nonsense example)
sysuse auto, clear
mlogit rep78 price i.foreign
margins foreign, predict(outcome(5))
Running this we see that the confidence interval of the predicted probabiliy for Domestic and outcome 5 is -0.015 to 0.098
Is there any way to "correct" the confidence interval?
Thank you
Anna Reimondos
Comment