✂️梗概

网络关系生成

步骤1:在项目文件中导入networkx和matplotlib.pyplot。

import networkx as nx
import matplotlib.pyplot as plt

步骤2:使用 networkx 生成图表。

步骤3:现在使用networkx.drawing的draw()函数来绘制图形。

步骤4:使用matplotlib.pyplot的savefig(“filename.png”)函数将绘制的图形保存在filename.png文件中。

import networkx as nx
import matplotlib.pyplot as plt

g = nx.Graph()

g.add_edge(1, 2)
g.add_edge(2, 3)
g.add_edge(3, 4)
g.add_edge(1, 4)
g.add_edge(1, 5)

nx.draw(g)
plt.savefig("filename.png")

输出:

Untitled

要在节点中添加编号,请在 draw() 函数中添加一个参数 with_labels=True 。

import networkx as nx
import matplotlib.pyplot as plt

g = nx.Graph()

g.add_edge(1, 2)
g.add_edge(2, 3)
g.add_edge(3, 4)
g.add_edge(1, 4)
g.add_edge(1, 5)

nx.draw(g, with_labels = True)
plt.savefig("filename.png")

输出:

Untitled

可以使用 networkx 绘图和 matplotlib 完成不同的图形类型和绘图。

import networkx as nx
import matplotlib.pyplot as plt

g = nx.Graph()

g.add_edge(1, 2)
g.add_edge(2, 3)
g.add_edge(3, 4)
g.add_edge(1, 4)
g.add_edge(1, 5)
g.add_edge(5, 6)
g.add_edge(5, 7)
g.add_edge(4, 8)
g.add_edge(3, 8)

nx.draw_circular(g, with_labels = True)
plt.savefig("filename1.png")

plt.clf()

nx.draw_planar(g, with_labels = True)
plt.savefig("filename2.png")
plt.clf()

nx.draw_random(g, with_labels = True)
plt.savefig("filename3.png")
plt.clf()

nx.draw_spectral(g, with_labels = True)
plt.savefig("filename4.png")
plt.clf()

nx.draw_spring(g, with_labels = True)
plt.savefig("filename5.png")
plt.clf()

nx.draw_shell(g, with_labels = True)
plt.savefig("filename6.png")
plt.clf()

输出:

圆形布局: