Announcement

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

  • Formatting esttab results with cells option

    Hey,

    I have the following table

    Code:
    Regression table\label{tab1}
    --------------------------------------------------
                          (1)          (2)          (3)
                      Model 1      Model 2      Model 3
                         b/se         b/se         b/se
    ---------------------------------------------------
    1.bornOnMo~h       0.0443       0.0968       0.0617
                      (0.149)      (0.119)      (0.115)
    2.bornOnMo~h       0.0963       0.0775       0.0279
                      (0.150)      (0.115)      (0.113)
    3.bornOnMo~h      -0.0582     -0.00297      -0.0553
                      (0.146)      (0.116)      (0.114)
    Entity Con~l           No          Yes          Yes
    age                    No           No          Yes
    ---------------------------------------------------
    P-value of~1        0.767        0.414        0.593
    Number of ~s         1015         1015         1015
    R-squared         0.00116        0.400        0.428

    which was obtained with the following code
    Code:
    esttab , stats(hTest N r2, label("P-value of 4-1" "Number of Observations" "R-squared")) drop(4.bornOnMonth _cons) cells(b(fmt(a3)) se(par fmt(a3))) indicate("Entity Control = *.game_encoded" "age = age") replace alignment(D{.}{.}{-1}) title(Regression table\label{tab1}) mtitle("Model 1" "Model 2" "Model 3")

    Is it possible to reproduce exactly the same table but by omitting the third row which says "b/se" (this indicates that beta is above and SE below it). I would like to omit it because for my purposes, it is self explanatory.

  • #2
    estout is from the Stata Journal/ SSC (FAQ Advice #12). Add the option

    Code:
    collabels(none)

    Comment

    Working...
    X