Announcement

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

  • Lrtest


    with lrtest it is possible to compare only two models at a time. Is this correct?

  • #2
    It depends on what you want to achieve. The documentation lists this example:

    Code:
        . webuse vote, clear
        . logit vote age moinc dependents
        . estimates store All
        . logit vote age moinc dependents if county==1
        . estimates store A1
        . logit vote age moinc dependents if county==2
        . estimates store A2
        . logit vote age moinc dependents if county==3
        . estimates store A3
        . lrtest (All) (A1 A2 A3), df(7)
    Best wishes

    (Stata 16.1 MP)

    Comment


    • #3

      only if adding independent variables or interactions improves or worsens the model

      Comment


      • #4
        thanks A lot

        Comment

        Working...
        X