Hi all,
I am in the process of implementing a graph using MetaGraphs(Next).jl. The graph dynamically expands over time.
Currently, I am using GraphRecipes to visualize the resulting graph at the end of my “time simulation”.
But I actually want a fancy visualization that shows how the graph grows over time. Is there an elegant way? Or should I just save the graph of each time step with the corresponding node positions (since they change each time the graph is drawn) and “render” the video at the end by stitching the frames together?
I am looking forward to any helpful ideas