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 LightGraphs. 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.

This documentation is not for the latest stable release, but for either the development version or an older release.
Click here to go to the documentation for the latest stable release.