Announcement

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

  • esttab with formatting confidence interval

    Hi Dear Stata Community,

    I am new to esttab.

    I am trying to display coefficient and confidence interval after my xtmixed estimation model.

    The confidence interval needs to be displayed with no parentheses, and with a comma and space in between.

    But when I wrote this:

    esttab m1 m2 m3 using "66_fn_xtmixed_fmch_md_wt-v3-ml.rtf", wide b(a2) ci(a2) noobs noparentheses

    I could not get a space between the confidence interval. What I got is like: "0.13,0.36"

    How can get a space after the comma? like this "0.13, 0.36"

    Any kind help is greatly appreciated.

    Alice


  • #2
    Thanks! Problem solved.

    I specified like this and it works:

    esttab m1 m2 m3 using "66_fn_xtmixed_fmch_md_wt-v3-ml.rtf", wide noobs noparentheses nostar scalar(N_clust) ///
    cells(`"b(fmt(a2)) ci(fmt(a2) par("" ", " ""))"')

    Comment

    Working...
    X