Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • VIF command not working after ologit

    Hi,

    I am trying to extract the vif values after an ologit model, but getting this error:

    . vif, uncentered
    [cut1] not found
    r(111);


    I tried with different datasets, but get the same error. Does it mean that this method doesn't apply to ologit models?

    Please let me know.

    Thanks.

  • #2
    Multicollinearity is a property of the data, not the model. So if you want to calculate variance inflation factors, run a linear regression with your outcome and predictors.

    Code:
    quietly regress y x1 ... xn
    estat vif

    Comment

    Working...
    X