This function creates an HTML chord diagram visualization for ABC connections, properly coloring the arcs based on whether each term is an A, B, or C term.
export_chord_diagram(
abc_results,
output_file = "abc_chord.html",
top_n = 50,
min_score = 0.1,
open = TRUE,
layout_seed = NULL
)The file path of the created HTML file (invisibly).
A data frame containing ABC results.
File path for the output HTML file.
Number of top results to visualize.
Minimum score threshold for including connections.
Logical. If TRUE, opens the HTML file after creation.
Optional seed for layout reproducibility. If NULL, no seed is set.