请如何在python中绘制多图?我尝试使用networkx库这样做,但仅绘制了两个节点之间的一个连接

时间:2018-12-15 23:40:15

标签: python graph-theory

请如何在python中绘制多图? 我尝试使用networkx库这样做,但是只绘制了两个节点之间的一个连接

1 个答案:

答案 0 :(得分:0)

如果执行类似的操作,则应允许您在同一节点之间绘制多个边缘。但是,绘制时它们将重叠,因为它们以直线绘制。

import networkx as nx
import numpy as np
import matplotlib.pyplot as plt

graph = nx.MultiGraph() # Must use MultiGraph rather than Graph

graph.add_nodes_from(['A', 'B', 'C', 'D', 'E'])
print('There are {} nodes in the graph: {}'.format(graph.number_of_nodes(), 
graph.nodes()))

graph.add_edges_from([('A', 'C'), 
                      ('A', 'B'), 
                      ('A', 'E'),
                      ('B', 'E'),
                      ('B', 'D'),
                      ('C', 'A')])
print('There are {} edges in the graph: {}'.format(graph.number_of_edges(), 
graph.edges()))

nx.draw(graph, with_labels = True, font_weight='bold')
plt.show()

# Confirms two edges between A and C
print(graph.number_of_edges('A', 'C'))

这将使您可以将属性存储在节点之间的多个边上。我还没有看到任何纯networkx选项可以让您分别可视化这些行。

您可以使用GraphViz做到这一点:

以下是文档:https://graphviz.readthedocs.io/en/stable/index.html

您可以使用以下方式进行点安装:

pip install graphviz

然后必须安装可执行文件。我在Mac上使用自制软件,因此只需键入:

brew install graphviz

这是两个互相指向的节点的基本示例:

from graphviz import Digraph

g = Digraph()

nodes = ['A', 'B', 'C']
edges = [['A', 'B'],['B', 'C'],['B', 'A']]

for node in nodes:
    g.node(node)

for edge in edges:
    start_node = edge[0]
    end_node = edge[1]
    g.edge(start_node, end_node)

g.view()

这是结果:

enter image description here