Thank you Loyal and team for cummeRbund, it's a great way to get a good feel for cuffdiff data and perform some nice analyses.
i'm having a little bit of a hard time adjusting certain aspects of the plots, which i believe based on the documentation should be possible as they are all ggplot2 objects. i am not an expert in R, so my questions might be naive.
given a scatter plot (as a matrix) from:
scatterM <- csScatterMatrix(genes(cuff))
scatterM
I would like to adjust what in ggplot2 is alpha, or transparency; i'd like to leave the density plot portion the same (where same conditions are compared).
i've tried a few ggplot2 things, but no luck. i've used ggplot2 in the past with success, but not here, e.g.
scatterM + (geom_point(alpha=1/20))
Error: geom_point requires the following missing aesthetics: x, y
thanks!
-sf
i'm having a little bit of a hard time adjusting certain aspects of the plots, which i believe based on the documentation should be possible as they are all ggplot2 objects. i am not an expert in R, so my questions might be naive.
given a scatter plot (as a matrix) from:
scatterM <- csScatterMatrix(genes(cuff))
scatterM
I would like to adjust what in ggplot2 is alpha, or transparency; i'd like to leave the density plot portion the same (where same conditions are compared).
i've tried a few ggplot2 things, but no luck. i've used ggplot2 in the past with success, but not here, e.g.
scatterM + (geom_point(alpha=1/20))
Error: geom_point requires the following missing aesthetics: x, y
thanks!
-sf
Comment