📅  最后修改于: 2022-03-11 14:45:41.639000             🧑  作者: Mango
def short_path_length(row):
return nx.shortest_path_length(G, row['Orgin_nodes'], row['Destination_nodes'], weight='length')
df['short_path_length'] = df.apply(short_path_length, axis=1)