Announcement

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

  • Question about twoway connected

    Hello,

    How can I do the twoway connected for the points, while only display the connected lines without those points?
    For example,
    Code:
    webuse sp500, clear
    twoway connected close date in 1/15, sort msymbol(smcircle)
    points.png


    I just want to see the lines with no dots. I was thinking use
    Code:
     mcolor(white)
    , but the dots will be a white space. Any other ideas?

    Thanks,
    Jack

  • #2

    msymbol(none)

    Comment


    • #3
      That's what twoway line does, if I understand the question correctly.

      Comment


      • #4
        connected requires twoway. the symbol is the default, so just set ms(none) and it goes away.

        Comment


        • #5
          Indeed. I understand #4.

          Comment

          Working...
          X