Create network visualization of GSEA results
create_network_plot(
gsea_results,
similarity_measure = "jaccard",
similarity_cutoff = 0.3,
n_pathways = 20,
layout = "fruchterman",
node_color_by = "NES",
edge_width_by = "similarity"
)
A ggplot2 object
A data frame containing GSEA results from the pathway_gsea function
A character string specifying the similarity measure: "jaccard", "overlap", or "correlation"
A numeric value specifying the similarity threshold for filtering connections
An integer specifying the number of pathways to display
A character string specifying the network layout algorithm: "fruchterman", "kamada", or "circle"
A character string specifying the node color mapping: "NES", "pvalue", or "p.adjust"
A character string specifying the edge width mapping: "similarity" or "constant"