Announcement

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

  • Using estpost correctly

    Hello,

    I am trying to export the results of a series of ttest using estpost.

    This simple command works great:
    by IND, sort : ttest PEMP1921, by(LOC)

    But this one does not:

    estpost by IND, sort : ttest PEMP1921, by(LOC)

    invalid subcommand
    r(198);

    I tried different version of this command, but nothing works.

    Can you help me?

    Thank you!

  • #2
    Claude, you may combine -eststo- and -estpost-.

    Code:
    by IND, sort: eststo: estpost ttest PEMP1921, by(LOC)

    Comment

    Working...
    X