I’m currently working with GraphPlot.jl to visualize my data - works fine. However I want to enrich the visualization so that you can see the confidence of the nodes/data in the graph during the simulation. I was thinking of a filling circle in each node. To test it, I have already implemented it using Compose.jl.
I would like to pass these custom nodes to my existing code with GraphPlot.jl, so that I can continue to use all the functionality of GraphPlot.jl and do not have to draw each edge myself.
Since GraphPlot is also using Compose, I guess it should be possible, but I have no idea how to start … has anyone an idea?
if you’re wanting a “live” display that updates while your code runs, you probably need Makie. I would guess that other graph drawing packages would output only single PNG or SVG images …
Ah maybe I expressed myself misunderstandable. The problem is not the live animation but the custom nodes. If each frame is saved as a png/svg and I only have the visualisation afterwards, I am completely satisfied.
Thanks, I was not aware of the open issue and also of the package Karnak.jl (which is yours, I guess?). Seems very comprehensive, with lots of features - I’ll definitely try to get my head around it and give it a go!