igraph:绘制同一图的递增增长子图时如何固定节点位置
igraph: How to fix node position when drawing incrementally growing subgraphs of the same graph
我有一个图表,我之前在 Gephi 中通过 运行 ForceAtlas2 预先计算了节点的位置,然后我尝试在 python 中使用 ìgraph
进行绘制。每个节点都有一个 date
属性,所以我遍历所有年份,计算相应的子图并绘制它们以创建动画效果。
然而,随着节点不断添加到图中,先前的节点不一定保持其旧位置,类似于所描述的in this post
我的代码如下:
colors = [color_list[int(g.vs[v]["Modularity Class"])] for v in range(0, len(g.vs))]
label_sizes = [sz / 4.0 for sz in g.vs["size"]]
nodes_in_years = defaultdict(list) # keeps a list of nodes per year
for v in g.vs:
year = int(v["date"][:4]) # convert the first 4 digits of the date to year
nodes_in_years[year].append(v)
nodes_incremental = []
for y, nodes in nodes_in_years.items():
nodes_incremental += nodes
h = g.subgraph(nodes_incremental)
plot(h, "graph-igraph%d.png"%y,
bbox=(640,480),
vertex_color=colors,
vertex_label_size=label_sizes,
keep_aspect_ratio=False,
)
以下是两张连续的快照。
在第二个快照中,节点略微 "squeezed",因为左侧添加了更多节点。
如何让节点保持固定位置?我尝试使用 xlim
设置和 ylim
,但我可能没有正确设置值
xlim
和ylim
是针对igraph的R接口;它们对 Python 无效。通常使用的技巧是在所有快照中找到最小和最大 X 和 Y 坐标,然后在左上角和右下角放置两个假顶点(将它们的 shape
属性设置为 None
)布局的角落。确保在具有相同坐标的所有快照中包含这些假顶点 - 这将确保布局在每个快照中以完全相同的方式缩放以适合您指定的边界框。
如果您没有在当前布局中使用 shape
属性,请注意,向假顶点添加 shape
属性也会添加 shape
属性(使用默认值None
) 的值到 "real" 顶点,因此您应该手动将除两个假顶点之外的所有顶点的 shape
属性设置为 "circle"
.
我有一个图表,我之前在 Gephi 中通过 运行 ForceAtlas2 预先计算了节点的位置,然后我尝试在 python 中使用 ìgraph
进行绘制。每个节点都有一个 date
属性,所以我遍历所有年份,计算相应的子图并绘制它们以创建动画效果。
然而,随着节点不断添加到图中,先前的节点不一定保持其旧位置,类似于所描述的in this post
我的代码如下:
colors = [color_list[int(g.vs[v]["Modularity Class"])] for v in range(0, len(g.vs))]
label_sizes = [sz / 4.0 for sz in g.vs["size"]]
nodes_in_years = defaultdict(list) # keeps a list of nodes per year
for v in g.vs:
year = int(v["date"][:4]) # convert the first 4 digits of the date to year
nodes_in_years[year].append(v)
nodes_incremental = []
for y, nodes in nodes_in_years.items():
nodes_incremental += nodes
h = g.subgraph(nodes_incremental)
plot(h, "graph-igraph%d.png"%y,
bbox=(640,480),
vertex_color=colors,
vertex_label_size=label_sizes,
keep_aspect_ratio=False,
)
以下是两张连续的快照。
在第二个快照中,节点略微 "squeezed",因为左侧添加了更多节点。
如何让节点保持固定位置?我尝试使用 xlim
设置和 ylim
,但我可能没有正确设置值
xlim
和ylim
是针对igraph的R接口;它们对 Python 无效。通常使用的技巧是在所有快照中找到最小和最大 X 和 Y 坐标,然后在左上角和右下角放置两个假顶点(将它们的 shape
属性设置为 None
)布局的角落。确保在具有相同坐标的所有快照中包含这些假顶点 - 这将确保布局在每个快照中以完全相同的方式缩放以适合您指定的边界框。
如果您没有在当前布局中使用 shape
属性,请注意,向假顶点添加 shape
属性也会添加 shape
属性(使用默认值None
) 的值到 "real" 顶点,因此您应该手动将除两个假顶点之外的所有顶点的 shape
属性设置为 "circle"
.