子图仅使用熊猫绘制1个图

时间:2016-07-13 14:20:28

标签: python-2.7 pandas matplotlib plot dataframe

我试图使用matplotlib' s subplots()命令在一个数字上得到两个图。我希望这两个图共享一个x轴,并为整个图绘制一个图例。我现在的代码是:

observline = mlines.Line2D([], [], color=(1,0.502,0),\
markersize=15, label='Observed',linewidth=2)
wrfline=mlines.Line2D([], [], color='black',\
markersize=15, label='WRF',linewidth=2)
fig,axes=plt.subplots(2,1,sharex='col',figsize=(18,10))
df08.plot(ax=axes[0],linewidth=2, color=(1,0.502,0))\
.legend(handles=[observline,wrfline],loc='lower center', bbox_to_anchor=(0.9315, 0.9598),prop={'size':16})
axes[0].set_title('WRF Model Comparison Near %.2f,%.2f' %(lat,lon),fontsize=24)
axes[0].set_ylim(0,360)
axes[0].set_yticks(np.arange(0,361,60))
df18.plot(ax=axes[1],linewidth=2, color='black').legend_.remove()
plt.subplots_adjust(hspace=0)
axes[1].set_ylim(0,360)
axes[1].set_yticks(np.arange(0,361,60))
plt.ylabel('Wind Direction [Degrees]',fontsize=18,color='black')
axes[1].yaxis.set_label_coords(-0.05, 1)
plt.xlabel('Time',fontsize=18,color='black')
#plt.savefig(df8graphfile, dpi = 72)
plt.show()

它产生四个数字,每个数字有两个子图。顶部总是空的。用我的第二个数据帧填充其中三个底部。每个数据帧的索引是日期时间索引,格式为YYYY-mm-DD HH:MM:SS。数据在整个时间序列中几乎是随机的0-360值,持续两个月。

以下是每个数字的示例:

enter image description here enter image description here

0 个答案:

没有答案