Create a heatmap visualization of agent decisions over time.
plot_decision_heatmap(
simulation_results,
n_sample_agents = 100,
n_sample_steps = 100
)
ggplot object
if (FALSE) { # \dontrun{
market <- create_annem_market(n_agents = 100)
results <- market$run_simulation(n_steps = 50)
heatmap_plot <- plot_decision_heatmap(results)
print(heatmap_plot)
} # }