Announcement

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

  • summary statistics stata to latex

    hi,
    im trying to export summary statistics from stata to latex using however, i recieve an error code
    my code:
    eststo clear
    eststo: tabstat Wave2 Wave4 Wave10, s( mean) by(SEX)
    esttab using file.tex, replace cells("mean(fmt(%9.2f)")

    last estimation results not found, nothing to store
    r(301);

    any help would be appreciated

  • #2
    estout is from SSC (FAQ Advice #12). You need estpost to send the output of tabstat to e().

    Code:
    eststo: estpost tabstat Wave2 Wave4 Wave10, s( mean) by(SEX)

    Comment

    Working...
    X