draw_random#
- draw_random(G, **kwargs)[source]#
绘制图
G
并使用随机布局。这是一个便捷函数,等效于:
nx.draw(G, pos=nx.random_layout(G), **kwargs)
- Parameters:
- G图
一个 networkx 图
- kwargs可选关键字参数
关于可选关键字参数的描述,请参见
draw_networkx
。
See also
Notes
每次调用此函数时都会计算布局。 对于重复绘图,直接调用
random_layout
并重用结果更为高效:>>> G = nx.complete_graph(5) >>> pos = nx.random_layout(G) >>> nx.draw(G, pos=pos) # 绘制原始图 >>> # 绘制子图,重用相同的节点位置 >>> nx.draw(G.subgraph([0, 1, 2]), pos=pos, node_color="red")
Examples
>>> G = nx.lollipop_graph(4, 3) >>> nx.draw_random(G)