GraphMakie.jl
Plotting graphs with Makie
Install / Use
/learn @MakieOrg/GraphMakie.jlREADME
GraphMakie
Plotting graphs¹... with Makie!
This package is just a plotting recipe; you still need to use one of the Makie backends. GraphMakie.jl uses graph datatypes from Graphs.jl and layout algorithms from NetworkLayout.jl. Check out our docs for detailed information on how to use this package.
Installation
pkg> add GraphMakie
Basic usage
using GLMakie
using GraphMakie
using Graphs
g = complete_graph(10)
graphplot(g)
¹the networky type with nodes and edges
