Announcement

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

  • Problems with eststo

    I am running the command:
    qui eststo mLb: melogit idec c.(dP dQ dS) if 1.sample & 1.iblock, vce(r) || id:

    and getting the error:
    option noskipline not allowed

    If I do the melogit function without eststo it works, also using quiet and melogit. I'm not sure what might be happening.

    Thanks in advance!

  • #2
    Originally posted by Alejandro Hirmas View Post
    If I do the melogit function without eststo it works, also using quiet and melogit.
    Then you should try the official estimates store command. Note that eststo is part of estout from SSC (FAQ Advice #12).

    Code:
    melogit idec c.(dP dQ dS) if 1.sample & 1.iblock, vce(r) || id:
    estimates store mLb

    Comment

    Working...
    X