NetworkXには、隣接行列の周波数/ノードノードの周波数に比例したノードとエッジをスケーリングする組み込みの方法がありますか?私はノードとノードの周波数に基づいて隣接行列の周波数とエッジの重みに基づいてノードとテキストのサイズを調整しようとしています。私はグラフの頻度属性を作成しましたが、ノードノードの頻度に関する情報をグラフに渡すという私の問題は解決しません。スケーリングNetworkXのノードとエッジは隣接行列に比例します
2つの質問:
1)隣接行列をnetworkXグラフに転送するベストプラクティスは何ですか?
2)ノードのサイズとエッジの重さをスケールするには、どのようにその情報を使用しますか?
## Compute Graph (G)
G = nx.Graph(A)
## Add frequency of word as attribute of graph
def Freq_Attribute(G, A):
frequency = {} # Dictionary Declaration
for node in G.nodes():
frequency[str(node)] = A[str(node)][str(node)]
return nx.set_node_attributes(G, 'frequency', frequency)
Freq_Attribute(g,A) # Adds attribute frequency to graph, for font scale
## Plot Graph with Labels
plt.figure(1, figsize=(10,10))
# Set location of nodes as the default
pos = nx.spring_layout(G, k=0.50, iterations=30)
# Nodes
node_size = 10000
nodes1 = nx.draw_networkx_nodes(G,pos,
node_color='None',
node_size=node_size,
alpha=1.0) # nodelist=[0,1,2,3],
nodes1.set_edgecolor('#A9C1CD') # Set edge color to black
# Edges
edges = nx.draw_networkx_edges(G,pos,width=1,alpha=0.05,edge_color='black')
edges.set_zorder(3)
# Labels
nx.draw_networkx_labels(G,pos,labels=nx.get_node_attributes(G,'label'),
font_size=16,
font_color='#062D40',
font_family='arial') # sans-serif, Font=16
# node_labels = nx.get_node_attributes(g, 'name')
# Use 'g.graph' to find attribute(s): {'name': 'words'}
plt.axis('off')
#plt.show()
私はラベルFONT_SIZEを設定しようとしたが、これは: FONT_SIZE = nx.get_node_attributes(G '周波数')を動作しませんでした)+ 8)