plotVolcano | R Documentation |
plotVolcano
makes a volcano plot from limma results. Uses
stat_binhex
function from ggplot2 to make a hexagonal heatmap.
plotVolcano(
res,
bins = 80,
xmax = NULL,
ymax = NULL,
marginal.histograms = FALSE,
text.size = 12,
show.legend = TRUE,
plot.grid = TRUE,
binhex = TRUE
)
res |
Result table from |
bins |
Number of bins for binhex. |
xmax |
Upper limit on x-axis. If used, the lower limit is -xmax. |
ymax |
Upper limit on y-axis. If used, the lower limit is -ymax. |
marginal.histograms |
A logical to add marginal histograms. |
text.size |
Text size. |
show.legend |
Logical to show legend (colour key). |
plot.grid |
Logical to plot grid. |
binhex |
Logical. If TRUE, a hexagonal density plot is made, otherwise it is a simple point plot. |
A ggplot
object.
library(proteusLabelFree)
data(proteusLabelFree)
prodat.med <- normalizeData(prodat)
res <- limmaDE(prodat.med)
plotVolcano(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.