Announcement

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

  • stata rdrobust report coefficient covariates

    Does anyone know or know the way to retrieve the coefficients of the covariates in the estimations using rdrobust, I have looked for them among the macros but I can't find them, I think they are not saved, does anyone have any idea?,

    Best regards,

  • #2
    rdrobust is from the Stata Journal (FAQ Advice #12). As with other commands

    Code:
    mat list e(b)
    For other estimation results

    Code:
    ereturn list

    Comment


    • #3
      Thank you very much, but that reports the RD estimator, with the other, yes I know that the other show the others that were saved, but just there I don't see that the coefficients of the covariates are saved either.

      Does anyone have any trick to modify the ado file to save somewhere those coefficients?

      Comment


      • #4
        I think you need to show exactly what you typed - as the FAQ recommends, because a simple example seems to work for me:
        Code:
        sysuse auto
        rdrobust price weight, c(2500)
        mat li e(b)
        I have no idea what you mean by "the other" - something that would again be cleared up by showing what you typed and how Stata responded

        Comment

        Working...
        X