Announcement

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

  • simple addplot syntax errors?

    Hi

    I'm trying to overlay a couple of plots but I can't seem to make it work, and the stata help files or forum posts aren't clearing anything up. Sorry to be that guy, I'm just stuck and it would really help. I want to impose 3 graphs onto one. Imposing 2 using the command below worked fine:

    lowess autokrlsbottleneck Wrist_Finger_Speed_Lv, addplot(lowess autokrlsswapwristfinger Wrist_Finger_Speed_Lv)

    But I'd like to add a third:

    lowess autokrlswristfinger Wrist_Finger_Speed_Lv

    I've tried moving things around, moving brackets and commas etc. Nothing is working. Can anyone suggest what to do with my code?


    Thanks.
    Last edited by Matthew Chapman; 28 Apr 2019, 15:02.

  • #2
    try the following:
    Code:
    lowess autokrlsbottleneck Wrist_Finger_Speed_Lv, addplot(lowess autokrlsswapwristfinger Wrist_Finger_Speed_Lv || lowess autokrlswristfinger Wrist_Finger_Speed_Lv)

    Comment


    • #3
      Absolutely perfect, Rich. Thanks

      Comment

      Working...
      X