其他分享
首页 > 其他分享> > 带有中文标签的networkx draw_graphviz

带有中文标签的networkx draw_graphviz

作者:互联网

我有一个图,其中节点标签为中文.我想使用draw_graphviz()进行绘制,但是保存图像时不会显示任何汉字.相反,它们显示为白色块.

我只想知道如何设置字体.

nx.draw_graphviz(G, font_size=6, node_size=80, font_family='serif', font_color='b', alpha=0.1)       
plt.savefig("community__large" + str(i) + ".png")  
plt.close()

上面是我现在使用的代码.

解决方法:

…where all Chinese word not display instead with block white.

起初,我无法复制您使用plt.show()时描述的行为,但是在保存图像时,字符显示为白色块.在我的系统(OS X 10.8.2,Python 2.7.3)上,SimHei字体似乎可以解决此问题.从matplotlib mailing list起,我发现Microsoft Yahei字体也可以工作,但是我没有尝试过.

g = nx.Graph()

g.add_edge('挪威'.decode('utf8'), '瑞典'.decode('utf8'))
nx.draw_graphviz(g, font_family='SimHei', node_size=1000,
    node_color='white')
plt.savefig('plot.png')

这产生了以下图像:

请注意,我从Google翻译获得了汉字,所以我希望这不会令人反感.

标签:pygraphviz,networkx,neato,python
来源: https://codeday.me/bug/20191031/1976900.html