GraphRecipes
GraphRecipes is a collection of recipes for visualizing graphs. Users specify a graph through an adjacency matrix, an adjacency list, or an AbstractGraph
via Graphs. GraphRecipes will then use a layout algorithm to produce a visualization of the graph that the user passed.
Usage
The main user interface is through the fuction graphplot
:
using GraphRecipes, Plots
g = [0 1 1;
1 0 1;
1 1 0]
graphplot(g)
See Examples for example usages and link:@ref graph_attributes[Attributes] for an explanation of keyword arguments to the graphplot
function.