as_enrichplot_object | R Documentation |
pareg
to class enrichResult
.The resulting object can be passed to any method from the enrichplot package and thus allows for nice visualizations of the enrichment results. Note: term similarities are included if available.
as_enrichplot_object(x, pvalue_threshold = 0.05)
x |
An object of class |
pvalue_threshold |
Treshold to select genes for count statistics. |
Object of class enrichResult
.
df_genes <- data.frame(
gene = paste("g", 1:20, sep = ""),
pvalue = c(
rbeta(10, .1, 1),
rbeta(10, 1, 1)
)
)
df_terms <- rbind(
data.frame(
term = "foo",
gene = paste("g", 1:10, sep = "")
),
data.frame(
term = "bar",
gene = paste("g", 11:20, sep = "")
)
)
fit <- pareg(df_genes, df_terms, max_iterations = 10)
as_enrichplot_object(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.