Chess Masters网络图案例绘制详解
1 官方示例
官网案例链接:https://networkx.org/documentation/latest/auto_examples/drawing/plot_chess_masters.html
全部代码如下:
import matplotlib.pyplot as plt
import networkx as nx
# tag names specifying what game info should be
# stored in the dict on each digraph edge
game_details = ["Event",<