Announcement

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

  • Lowess plots: how to eliminate bandwidth note?

    Hi, I am trying to figure out how to eliminate the bandwidth text box generated by lowess plots (with a line of code, rather than manually editing the graph). I want to add it as a footnote instead after combining several graphs.



  • #2
    Code:
    . sysuse auto, clear
    (1978 automobile data)
    
    . lowess mpg weight
    
    . lowess mpg weight, note("")

    Comment


    • #3
      Thank you so much, Nick!

      Comment

      Working...
      X