我想画一个动态的网络来展示它是如何随着时间的推移而变化的,我已经找到了如何在给定两个单一状态(这里称为 s_pos,t_pos)的情况下动画化一个网络,但是我想做的更进一步,因为我想一行一行地填充我的网络,我想我需要通过在函数anim(t)中迭代我的 Dataframe 来更新G;这是我努力争取来的。
import pandas as pd
import networkx as nx
import matplotlib.pyplot as plt
import matplotlib.animation as animation
# data
df = pd.DataFrame({'Date': ["2022-11-28", "2022-11-29", "2022-11-30", "2022-12-01"],
'ID' : ['A', 'B', 'C', 'A'],
'Value': ['X', 'Y', 'X', 'Z']})
# network
G = nx.from_pandas_edgelist(df, source='ID', target='Value')
# two states as an example
s_pos = nx.spring_layout(G)
t_pos = nx.circular_layout(G)
fig = plt.figure(figsize=(8, 8))
# animation function with smooth interpolation between states
def anim(t):
global s_pos
global t_pos
interpolation = {i: s_pos[i]*(1-t/299) + t_pos[i] * t/299 for i in list(t_pos.keys())}
plt.clf()
plt.cla()
nx.draw(G, pos=interpolation,
with_labels=True,
node_size = 5000)
# run and save
ani = animation.FuncAnimation(fig, anim, repeat=False, frames=300, interval=20)
f = r'path\network.gif'
writergif = animation.PillowWriter(fps=30)
ani.save(f, writer=writergif)
1条答案
按热度按时间8i9zcol21#
如果我没理解错的话,您希望您的网络逐步(逐行)出现在动画中,一种方法是根据 Dataframe 中最多
t
的行,在anim
函数中创建一个新网络Gt
。在动画的每一步中,您还可以使用ax.clear()
清除绘图,如post所示。参见以下示例: