Create a network visualization of ABC connections using base R graphics.
vis_abc_network(
abc_results,
top_n = 25,
min_score = 0.1,
node_size_factor = 3,
edge_width_factor = 1,
color_by = "type",
title = "ABC Model Network"
)NULL invisibly. The function creates a plot as a side effect.
A data frame containing ABC results from apply_abc_model().
Number of top results to visualize.
Minimum score threshold for including connections.
Factor for scaling node sizes.
Factor for scaling edge widths.
Column to use for node colors. Default is 'type'.
Plot title.