I have a python3 script using the networkx and matplotlib libraries. An example sample is as follows:
#! /usr/bin/env python3
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
import networkx as nx
if __name__ == '__main__':
vertices = range(1, 10)
edges =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.