Announcement

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

  • How can I change coloring of the binscatter by graphs?

    I know we can generate overlayed binscatters with binscatter y x , by(group) . The problem is that the colors are very close to each other (especially for the color blinded people). Is it possible to change group colors?
    Last edited by John Williamss; 24 Oct 2022, 17:08.

  • #2
    There are -color()-, -mcolor()-, and -lcolor()- options:

    Code:
    sysuse auto,clear
    binscatter price mpg, colors(blue yellow) by(foreign)

    Comment

    Working...
    X