The alpha value in ggplot2 is often used to help with overplotting in R. Darker colors represent areas where many observations fall, and lighter colors represent areas where only a few observations fall. Is it possible to reverse this? So, that outliers (with typically few observations) are emphasized as darker, whereas the majority of data (with typically many observtaions) are emphasized as lighter?
Below is a MWE:
myDat <- data.frame(x=rnorm(10000,0,1),y=rnorm(10000,0,1))
qplot(x=x, y=y, data=myDat, alpha=0.2)
The more rare observations away from the center (0,0) are lighter. How can I reverse that? Thank you for any ideas.
You could try setting the alpha value for each point separately, with opacity increasing further from the center. Something like this