| name | bio-pathway-enrichment-visualization |
| description | Visualize enrichment results using enrichplot package functions. Use when creating publication-quality figures from clusterProfiler results. Covers dotplot, barplot, cnetplot, emapplot, gseaplot2, ridgeplot, and treeplot. |
| tool_type | r |
| primary_tool | enrichplot |
Version Compatibility
Reference examples tested with: ggplot2 3.5+
Before using code patterns, verify installed versions match. If versions differ:
- R:
packageVersion('<pkg>') then ?function_name to verify parameters
If code throws ImportError, AttributeError, or TypeError, introspect the installed
package and adapt the example to match the actual API rather than retrying.
Enrichment Visualization
"Create publication-quality plots from my enrichment analysis" → Generate dotplots, gene-concept networks, enrichment maps, GSEA running score plots, and ridgeplots from clusterProfiler results.
- R:
dotplot(), cnetplot(), emapplot(), gseaplot2() (enrichplot)
Scope
This skill covers enrichplot package functions designed for clusterProfiler results:
dotplot(), barplot() - Summary views
cnetplot(), emapplot(), treeplot() - Network/hierarchical views
gseaplot2(), ridgeplot() - GSEA-specific
goplot(), heatplot(), upsetplot() - Specialized views
For custom ggplot2 enrichment dotplots (manual implementation), see data-visualization/specialized-omics-plots.
Setup
Goal: Load required packages for visualizing enrichment analysis results.
Approach: Import clusterProfiler, enrichplot, and ggplot2 which provide the plotting functions for enrichment objects.
library(clusterProfiler)
library(enrichplot)
library(ggplot2)
Dot Plot
Goal: Summarize enrichment results showing gene ratio, count, and significance in a single figure.
Approach: Use enrichplot dotplot which maps gene ratio to x-axis, term to y-axis, dot size to count, and color to p-value.
Most common visualization - shows gene ratio, count, and significance.
dotplot(ego, showCategory = 20)
dotplot(ego, showCategory = 15, font.size = 10, title = 'GO Enrichment') +
scale_color_gradient(low = 'red', high = 'blue')
pdf('go_dotplot.pdf', width = 10, height = 8)
dotplot(ego, showCategory = 20)
dev.off()
Bar Plot
Shows enrichment count or gene ratio.
barplot(ego, showCategory = 20)
barplot(ego, showCategory = 15, x = 'GeneRatio', color = 'p.adjust')
Gene-Concept Network (cnetplot)
Goal: Visualize which genes contribute to multiple enriched terms, revealing shared biology.
Approach: Build a bipartite network connecting enriched terms to their member genes, optionally colored by fold change.
Shows relationships between genes and enriched terms.
cnetplot(ego)
cnetplot(ego, foldChange = gene_list)
cnetplot(ego, circular = TRUE, colorEdge = TRUE)
cnetplot(ego, node_label = 'gene', cex_label_gene = 0.8)
Enrichment Map (emapplot)
Goal: Identify clusters of related enriched terms by visualizing shared gene overlap.
Approach: Compute pairwise term similarity, then plot as a network where edges connect terms sharing genes.
Shows term-term relationships based on shared genes.
ego_pt <- pairwise_termsim(ego)
emapplot(ego_pt)
emapplot(ego_pt, showCategory = 30, cex_label_category = 0.6)
emapplot(ego_pt, group_category = TRUE, group_legend = TRUE)
Tree Plot
Hierarchical clustering of enriched terms.
ego_pt <- pairwise_termsim(ego)
treeplot(ego_pt)
treeplot(ego_pt, showCategory = 30)
Upset Plot
Show overlapping genes between terms.
upsetplot(ego)
upsetplot(ego, n = 10)
GSEA-Specific Plots
Running Score Plot (gseaplot2)
gseaplot2(gse, geneSetID = 1, title = gse$Description[1])
gseaplot2(gse, geneSetID = 1:3)
gseaplot2(gse, geneSetID = 1, subplots = 1:3)
gseaplot2(gse, geneSetID = 'GO:0006955')
Ridge Plot
Distribution of fold changes in gene sets.
ridgeplot(gse)
ridgeplot(gse, showCategory = 15)
ridgeplot(gse, showCategory = 20) + theme(axis.text.y = element_text(size = 8))
GO-Specific Plot (goplot)
DAG structure of GO terms.
goplot(ego)
goplot(ego_bp)
Heatplot
Gene-concept heatmap.
heatplot(ego, foldChange = gene_list)
heatplot(ego, showCategory = 15, foldChange = gene_list)
Compare Multiple Analyses
Goal: Visualize enrichment results side by side across multiple gene lists or conditions.
Approach: Use dotplot on compareCluster output, optionally faceting by cluster.
dotplot(ck, showCategory = 10)
dotplot(ck) + facet_grid(~Cluster)
Customize ggplot2 Elements
Goal: Fine-tune enrichment plots with custom titles, themes, colors, and text sizes.
Approach: Chain ggplot2 modifiers onto enrichplot output since all functions return ggplot2 objects.
All enrichplot functions return ggplot2 objects.
p <- dotplot(ego, showCategory = 20)
p + ggtitle('GO Biological Process Enrichment')
p + theme_minimal()
p + theme(axis.text.y = element_text(size = 10))
p + scale_color_viridis_c()
Save Plots
Goal: Export enrichment plots as publication-quality PDF or PNG files.
Approach: Use base R pdf/png device functions or ggplot2 ggsave to write plots to files.
pdf('enrichment_plots.pdf', width = 10, height = 8)
dotplot(ego, showCategory = 20)
dev.off()
png('dotplot.png', width = 800, height = 600, res = 100)
dotplot(ego, showCategory = 20)
dev.off()
p <- dotplot(ego)
ggsave('dotplot.pdf', p, width = 10, height = 8)
Visualization Summary
| Function | Best For | Input Type |
|---|
| dotplot | Overview of enrichment | ORA, GSEA |
| barplot | Simple counts/ratios | ORA |
| cnetplot | Gene-term relationships | ORA |
| emapplot | Term clustering | ORA |
| treeplot | Hierarchical grouping | ORA |
| upsetplot | Term overlap | ORA |
| gseaplot2 | Running enrichment score | GSEA |
| ridgeplot | Fold change distribution | GSEA |
| goplot | GO DAG structure | GO only |
| heatplot | Gene-concept matrix | ORA |
Related Skills
- go-enrichment - Generate GO enrichment results
- kegg-pathways - Generate KEGG enrichment results
- gsea - Generate GSEA results