/nxviz

Visualization Package for NetworkX

Primary LanguagePythonMIT LicenseMIT

nxviz

Join the chat at https://gitter.im/ericmjl/nxviz Documentation Status Updates

nxviz is a graph visualization package for NetworkX. With nxviz, you can create beautiful graph visualizations by a declarative API. Here's an example.

# Assume we have a professional network of physicians belonging to hospitals.
c = CircosPlot(G, node_color='affiliation', node_grouping='affiliation')
c.draw()
plt.show()  # only needed in scripts

Check out the examples for more details!

Features

  • Declarative API.
  • Works with NetworkX, one of the more popular graph libraries in Python.

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.