This file contains hidden or 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
import networkx as nx | |
import matplotlib.pyplot as plt | |
from networkx.readwrite.json_graph import (node_link_data, tree_data) | |
from pprint import pprint | |
from networkx.drawing.nx_agraph import graphviz_layout | |
G = nx.DiGraph() | |
nodes = [ | |
{'label': 'root'}, | |
{'label': 'field'}, |
This file contains hidden or 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
# Editors | |
.vscode/ | |
.idea/ | |
# Vagrant | |
.vagrant/ | |
# Mac/OSX | |
.DS_Store |