Maison  >  Questions et réponses  >  le corps du texte

Comment utiliser python nrtworkx pour agrandir l'image ?

L'image générée est trop petite et ne peut pas voir clairement les connexions entre les nœuds. Elle est trop dense. J'espère qu'il peut y avoir une solution

.
# _*_ coding:utf-8 _*_
import matplotlib.pyplot as plt
import networkx as nx

G = nx.DiGraph()
#加载文件中边的关系
with open('bigdata.txt') as f:
    lines = f.readlines()
mylist = [line.strip().split() for line in lines]  

pos =nx.spring_layout(G)

outlist = []
for i in range(len(mylist)):
    a = mylist[i][0]
    for j in range(len(mylist[i])-1):
        outlist.append([a, mylist[i][j+1]])

#加载边
G.add_edges_from(outlist)
nx.draw(G, with_labels=True, node_size=200,width=0.3, node_color='r', alpha = 0.7, edge_color='black',edge_vmin=2,edge_vmax=3)

plt.savefig('test1.png')
plt.show()
ringa_leeringa_lee2711 Il y a quelques jours615

répondre à tous(1)je répondrai

  • 某草草

    某草草2017-05-18 10:59:21

    Il est recommandé d'utiliser d3py pour les diagrammes de réseau ou de définir la taille du canevas de matplotlib

    répondre
    0
  • Annulerrépondre