I wonder if there is a way/package that provides a means to overlay plots (I am thinking of a scatter plot generated by geom_point
) in a way similar to overlaying channels in ImageJ.
I would like to check if the two points are overlapped. Visually, a red pixel and green pixel overlay will turn yellow if done in ImageJ. However, the closest I can get to getting a similar result is to set the alpha
of the point in geom_point
. However, the color is not exactly yellow.
Therefore, I would like to know if there is a way I can produce a similar plot in R.