Manipulating and visualizing graphs with NetworkX

In this recipe, we will show how to create, manipulate, and visualize graphs with NetworkX.

Getting ready

You can find the installation instructions for NetworkX in the official documentation at http://networkx.github.io/documentation/latest/install.html.

With Anaconda, you can type conda install networkx in a terminal. Alternatively, you can type pip install networkx. On Windows, you can also use Chris Gohlke's installer, available at www.lfd.uci.edu/~gohlke/pythonlibs/#networkx.

How to do it…

  1. Let's import NumPy, NetworkX, and matplotlib:
    In [1]: import numpy as np
            import networkx as nx
            import matplotlib.pyplot as plt
            %matplotlib inline
  2. There are many different ways of creating a graph. Here, we create ...

Get IPython Interactive Computing and Visualization Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.