Announcement

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

  • Export bootest resutls for a number of regressions.

    Hello,
    I am using running a simple regression, in a context with few clusters.
    For robust inference, I am using bootest to build my confidence intervals.

    However, I am having trouble exporting the results in a consistent manner, perhaps using esttab to compare multiple regressions.

    Does anyone know how I could do this?

    Code:
    webuse nlsw88,clear
    regress wage tenure ttl_exp collgrad, cluster(industry) //my main model
    boottest {tenure} {ttl_exp} {collgrad}, /// export no reg vs dom state
    madjust(bonferroni) nograph reps(9999) // I am testing the significance of multiple coefficients. 
    esttab // to show model coefficients

    thanks a lot for your help

  • #2
    export what to what?

    Comment


    • #3
      Ideally to a latex table. apologies for not specifying this!

      Comment


      • #4
        HTML Code:
        https://lukestein.github.io/stata-latex-workflows/

        Comment


        • #5
          Dear George Ford,
          thanks a your efforts. I am aware of the existence of Esttab and outreg commands, but unfortunately they do not appear to work after boottest. Indeed reported standard errors remain those of the main regression. Do you know how I can use them with esttab?

          thank you very much

          Comment


          • #6
            Maybe this will work.
            Code:
            search texdoc

            Comment

            Working...
            X