Matplotlib 在保存时将两个单独的图形压缩为一个

Posted

技术标签:

【中文标题】Matplotlib 在保存时将两个单独的图形压缩为一个【英文标题】:Matplotlib condenses two separate figures into one upon saving them 【发布时间】:2015-10-28 13:29:01 【问题描述】:

我是 Python 新手。运行这些代码行时,我希望保存两个单独的数字。

图号1:

#3) Create the graph
N=int(raw_input('Number of nodes (sqrt): '))
G=nx.grid_2d_graph(N,N)
pos = dict( (n, n) for n in G.nodes() ) #Dictionary of all positions
labels = dict( ((i, j), i + (N-1-j) * N ) for i, j in G.nodes() )
nx.draw_networkx(G, pos=pos, labels=labels,with_labels=False, node_size=10)
#Plot the graph
plt.axis('off')
title_string=('Lattice Network') 
subtitle_string=(''+str(N)+'x'+str(N)+' = '+str(N*N)+' nodes')
plt.suptitle(title_string, y=0.99, fontsize=17)
plt.title(subtitle_string, fontsize=8)
plt.savefig('100x100_lattice.png', dpi=1000,bbox='tight') #Figure no. 1
plt.close()

图号2:

#4) Plot the degree distribution
for data_dict in node_degree.values():
    x=node_degree.keys()
    y=node_degree.values()
from collections import Counter
occ=Counter(y)
for data_dict in occ.values():
    plotx=occ.keys()
    ploty=occ.values()
Pk=numpy.zeros((len(ploty)))
for i in range(0, len(ploty)):
    Pk[i]=numpy.around(ploty[i]/(N*N),3)
plt.scatter(plotx,Pk,color='red', edgecolors='darkred')
plt.show() 
plt.xlabel('Node degree k')
plt.ylabel('P(k)')
plt.xlim(0,10,1)
plt.xticks(numpy.arange(0, 11, 1.0))
plt.ylim(0,1) 
plt.yticks(numpy.arange(0, 1, 0.1))
title_string=('Degree Distribution')
subtitle_string=('Lattice, '+str(N)+'x'+str(N)+' nodes') 
plt.suptitle(title_string, y=0.99, fontsize=17)
plt.title(subtitle_string, fontsize=9)
plt.tick_params(
    axis='x',          # changes apply to the x-axis
    which='both',      # both major and minor ticks are affected
    bottom='on',      # ticks along the bottom edge are off
    top='on',         # ticks along the top edge are off
    labelbottom='on')
plt.savefig('100x100_lattice_Degree_Distrib.png', dpi=1000,bbox='tight') #Figure no. 2
plt.close()

相反,我在视觉上得到的是:

我的问题。 右侧的图像(在代码中,Figure no. 2)是正确的。左边的那个 (Figure no. 1) 是错误的,因为它应该只显示您看到的常规结构,而不是明显来自第二张图像的红点。我的plt.show 电话一定有问题,但我找不到答案。感谢您的帮助!

【问题讨论】:

【参考方案1】:

问题是第二个图中的 plt.scatter() 正在绘制在第一个图中创建的图,对吗?只需在第二个图中的 plt.scatter() 调用之前添加对 plt.figure() 的调用。这应该可以解决您的问题。

【讨论】:

它有效。谢谢。我假设带回家的信息是:每次你想在 matplotlib 中绘制一些东西时,请确保你调用 plt.figure() 在任何新的情节之前 一个更好的带回家的信息是使用面向对象的接口:fig=plt.figure(); ax=fig.add_subplot(111); ax.scatter(...)。这样你总是知道你在哪个Axes上绘图 @tom 说了什么。真的,你应该完全避免使用plt,除了创建图形和轴

以上是关于Matplotlib 在保存时将两个单独的图形压缩为一个的主要内容,如果未能解决你的问题,请参考以下文章

使用带有两个列表的matplotlib绘制图形

在 matplotlib 中优雅地组合两个图形

在 Spyder IDE 中使用 Matplotlib 绘制内联或单独的窗口

matplotlib 可以将元数据添加到保存的图形中吗?

在 NFS 文件系统上使用 matplotlib 保存图形

将两个 matplotlib 滑块链接在一起