Announcement

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

  • lwidth option for a twoway kdensity plot

    Hello statalisters,

    I'm generating a twoway kdensity plot, but when I enter the option lwidth(*2 *2) for the two lines, only one is modified...

    I have something like this

    twoway kdensity response if sex==1 || kdensity response if sex==2, lwidth(*2 *2)

    thank you for your help

  • #2
    Have you tried the following?
    Code:
    twoway kdensity response if sex==1, lwidth(*2) || kdensity response if sex==2, lwidth(*2)

    Comment


    • #3
      Great, thanks a lot!

      Comment

      Working...
      X