Problems with save_graphs

I find save_graphs will change edges order according to G.edges(), is there any solution to avoid this problem?

Hi,

You need to use g.edges(order='eid') to ensure the result edges are sorted by eids.

1 Like