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.

Installation

GraphRecipes can be installed with the package manager:

] add GraphRecipes

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 Attributes for an explanation of keyword arguments to the graphplot function.