Visualizing a dynamic changing graph

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 :slight_smile:

Animations can be easily built from lots of consecutive still images - ffmpeg is (eventually) your friend…! :slight_smile:

Some experiments suggest that you might have to worry about changing layouts, and that indicating where the “growth” is taking place might help the viewer focus on the changes. And the frame rate should probably be quite low…

graf

I have done similar things with Makie.jl