Description Usage Arguments Value Examples
Function that takes two numeric vectors (P-Value and fold change)
and draws a volcano plot using ggplot2
1 2 3 4 5 6 7 8 9 10 | volcano_plot(
pval,
fc,
names,
size = 2,
tFC = 2,
tPV = -log10(0.001),
show.labels = TRUE,
show.effect = FALSE
)
|
pval |
numeric vector of P.Values |
fc |
numeric vector of fold change |
names |
character vector with the feature's names. |
size |
(default |
tFC |
(default |
tPV |
(default |
show.labels |
(default |
show.effect |
(default |
A ggplot
object
1 2 3 | data(rset)
w1 <- getAssociation(rset, rid = 1, fNames = NULL)
volcano_plot(w1$P.Value, w1$logFC, rownames(w1))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.