This function creates a heatmap visualization from ABC results.
Usage
plot_heatmap(
results,
output_file = "heatmap.png",
width = 1200,
height = 900,
resolution = 120,
top_n = 15,
min_score = 1e-04,
color_palette = "blues",
show_entity_types = TRUE,
verbose = TRUE
)
Arguments
- results
The results to visualize
- output_file
Filename for the output PNG (default: "heatmap.png")
- width
Width of the output image (default: 1200)
- height
Height of the output image (default: 900)
- resolution
Resolution of the output image (default: 120)
- top_n
Maximum number of results to include (default: 15)
- min_score
Minimum score threshold (default: 0.0001)
- color_palette
Color palette for the heatmap (default: "blues")
- show_entity_types
Logical; if TRUE, show entity types (default: TRUE)
- verbose
Logical; if TRUE, print status messages (default: TRUE)