plot_mv {MetaVolcanoR} | R Documentation |
This function plots either the combining- or the vote-counting- MetaVolcanos
plot_mv(meta_diffexp, nstud, genecol, comb, metafc)
meta_diffexp |
data.frame/data.table containing the differential expression inputs |
nstud |
the number of differential expression inputs <integer> |
genecol |
column name of the variable to label genes in the .html file <string> |
comb |
wheather or not the drawing is for the combining-metavolcano <logical> |
metafc |
method for summarizing gene fold-changes across studies c("Mean", "Median") <string> |
ggplot2
object
data(diffexplist) mv <- votecount_mv(diffexplist) gg <- plot_mv(mv@metaresult, length(diffexplist), "Symbol", FALSE, "Mean") plot(gg)