What is the difference between Graphs and GraphMakie?

Hey! Graphs.jl is a package that provides data types and algorithms for graphs, letting you create graphs and do operations like depth-first search on them (and many other algorithms).
GraphMakie.jl builds on top of Graphs.jl to add interactive visualizations. So you can take the same graphs you load/create with Graphs.jl and visualize them using GraphMakie.jl.

2 Likes