在networkx中给步行边着色

3

我已经用networkx库编写了一个简单的代码来生成给定图G中的随机游走。现在,当我进行游走时,我想使用matplotlib对边缘进行着色和绘制。例如:假设我从连接边缘从节点1走到节点2,我希望该边缘与其他边缘颜色不同。以下是代码:

def unweighted_random_walk(starting_point,ending_point, graph):
'''
starting_point: String that represents the starting point in the graph
ending_point: String that represents the ending point in the graph
graph: A NetworkX Graph object
'''
##Begin the random walk
current_point=starting_point
#current_node=graph[current_point]
current_point_neighors=graph.neighbors(current_point)
hitting_time=0

#Determine the hitting time to get to an arbitrary neighbor of the
#starting point
while current_point!=ending_point:
    #pick one of the edges out of the starting_node with equal probs
    possible_destination=current_point_neighbors[random.randint(0,current_point_neighors)]
    current_point=possible_destination
    current_point_neighbors=graph.neighbors(current_point)
    hitting_time+=1
return hitting_time
2个回答

3

这是我使用的:

def colors(G):
    colors = []
    for edge,data in G.edges_iter(data=True):
        # return a color string based on whatever property you want
        return 'red' if data['someproperty'] else 'blue'

        # alternatively you could store a 'color' key on the edge
        # return data['color']

    return colors

# When you invoke the draw command pass a list of edge colors
nx.draw_spectral(G, edge_color=colors(G))

0

这个工作得很好... 但是要小心填写适当的值列表。一个可行的代码修改如下:

def colors(G, attrib):
   colors = []    
   for node,data in G.nodes_iter(data=True):
     # return a color string based on whatever property you want
     if data['someproperty'] != attrib:
        colors.append('AliceBlue')
     else:
        colors.append('Crimson')
   return colors

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接