Announcement

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

  • dtable formating

    Hello, I'm trying to use dtable command and I wanted to getrid of "%" insde () when I have categorical values, I just want n (xx.x) NOT n (xx.x%). How do I do that?
    Also, for continous variable how do I get 95% CI?
    Thanks.
    Ali Duchu

  • #2
    Code:
    sysuse auto, clear
    dtable i.rep78, by(foreign) sformat("%s" fvpercent percent) nformat(%3.2f fvpercent percent)

    Comment

    Working...
    X