Last active
July 20, 2020 03:54
-
-
Save rudiejd/13f18afda2eb8225059792e78a963027 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from rec import make_graph | |
import networkx as nx | |
from matplotlib import pyplot as plt | |
graph_dict = make_graph('fiona apple', 3, 3) | |
walk_graph = nx.DiGraph(graph_dict) | |
nx.draw_planar(walk_graph, with_labels=True) | |
plt.title('Random Walk through Spotify') | |
plt.draw() | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment