Matplotlib设置相同盒子大小的不同数字

时间:2020-08-09 08:08:16

标签: python matplotlib

我正在尝试绘制科学图。在下面您可以看到两个数字。图的大小是相同的,但是盒子的大小是不同的。基本上,我想使绘图区域具有相同的大小(如何设置没有会计轴标签的框的大小)

enter image description here

enter image description here

我正在使用熊猫数据

with plt.style.context(['science','ieee']):
    plt.figure (figsize=(3,3))
    plt.plot(data_X_mild['c_H2O'], data_X_mild['HRR'], label='MILD')
    plt.plot(data_X_conv['c_H2O'], data_X_conv['HRR'],label='ConvI')  
    plt.legend()
    plt.xlabel(xlabel='$c_{T}$')
    plt.ylabel(ylabel=r'$\dot{Q_{t}}$ $(\frac{W}{m^{3}})$')
    plt.autoscale(tight=True)
    plt.savefig('HRR_MILDvsConv_c_'+sim_data+'.pdf')

with plt.style.context(['science','ieee']):
    plt.figure (figsize=(3,3))
    plt.plot(data_PR_mild['c_H2O'], data_PR_mild['NO'], label='ConvI')
    plt.legend()
    plt.xlabel(xlabel='$c_{T}$')
    plt.ylabel(ylabel=r'$\omega_{k}$')
    plt.autoscale(tight=True)

0 个答案:

没有答案