Home > Software engineering >  Why does geom_jitter replicates black points when we use aes colour?
Why does geom_jitter replicates black points when we use aes colour?

Time:06-14

I came across this issue while analyzing my data and I was able to replicate it with the example of the ggplot of mpg with red points

If you want jittered points, use either geom_point(position = "jitter") or geom_jitter(), not both.

  • Related