Note
Go to the end to download the full example code.
贪心着色#
我们尝试用尽可能少的颜色为图着色,其中节点的邻居不能与该节点本身颜色相同。
import numpy as np
import networkx as nx
import matplotlib.pyplot as plt
import matplotlib.colors as mpl
from matplotlib import animation
G = nx.dodecahedral_graph()
# Apply greedy coloring
graph_coloring = nx.greedy_color(G)
unique_colors = set(graph_coloring.values())
# 根据贪心着色算法为节点分配颜色
graph_color_to_mpl_color = dict(zip(unique_colors, mpl.TABLEAU_COLORS))
node_colors = [graph_color_to_mpl_color[graph_coloring[n]] for n in G.nodes()]
pos = nx.spring_layout(G, seed=14)
nx.draw(
G,
pos,
with_labels=True,
node_size=500,
node_color=node_colors,
edge_color="grey",
font_size=12,
font_color="#333333",
width=2,
)
plt.show()

3D graph.#
在3D中绘制的相同图表。
pos = nx.spectral_layout(G, dim=3)
labels = list(G)
nodes = np.array([pos[v] for v in G])
edges = np.array([(pos[u], pos[v]) for u, v in G.edges()])
def init():
ax.clear()
ax.scatter(*nodes.T, alpha=0.9, s=500, color=node_colors)
for vizedge in edges:
ax.plot(*vizedge.T, color="gray")
ax.grid(False)
ax.set_axis_off()
for p in pos:
ax.text(
*pos[p],
labels[p],
size=14,
horizontalalignment="center",
verticalalignment="center",
)
fig = plt.figure(layout="tight")
ax = fig.add_subplot(111, projection="3d")
init()
plt.show()

旋转三维图形动画。#
Rotation of the 3D graph.
def _frame_update(index):
ax.view_init(index * 0.2, index * 0.5)
fig = plt.figure(layout="tight")
ax = fig.add_subplot(111, projection="3d")
ax.grid(False)
ax.set_axis_off()
ani = animation.FuncAnimation(
fig,
_frame_update,
init_func=init,
interval=50,
cache_frame_data=False,
frames=100,
)
plt.show()
Total running time of the script: (0 minutes 5.046 seconds)