Announcement

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

  • Storing one regression coefficient out of many others in "reghdfe"

    I have a fixed effects regression with many controls.

    Code:
    reghdfe pm p_diff l1.pm dd ddXpay rnd firm_volatility industry_volatility ind_mkt ind_tang s_gr net_ppe, absorb(co_code)
    I want to store the coefficient of ddXpay only.

    Thanks

  • #2
    like the following?
    Code:
    local b4=_b[ddXpay]
    dis `b4'
    It all depends on how you want to store it
    2B or not 2B, that's a question!

    Comment

    Working...
    X