Announcement

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

  • outreg2 CI and exponentiated coefficients

    How do I correctly use outreg2 to output a logistic table that includes the following characteristics:
    -95% CI
    -3 decimal places
    -exponentiated coefficients
    -appended estimates

    I have used the help documentation and am currently doing the following:

    Code:
    logistic n_treat Project_Count  $xs
    outreg2 using "Z:\TabFig\Results_C2.xls",  bdec(3) stats(ci) level(95)append eform
    What I produce is appended, exponentiated CI, but no coefficients.

    Thank you.

  • #2
    What do you get when you include coef in your stats option?

    Comment


    • #3
      If I include stats(coef) with my previous code then the coefficients (or CIs) aren't exponentiated.

      I figured out the answer:

      Code:
      outreg2 using "Z:\TabFig\Results_1.xls", ci bdec(3) eform append

      Comment

      Working...
      X