如何更改时间序列子图图像的大小?

时间:2020-06-02 16:27:08

标签: python matplotlib

我有一个时序图,它取决于一个函数和一些表格。 这是函数:

import matplotlib.pyplot as plt

def format_axes1(fig1):
    for i, ax in enumerate(fig1.axes):
        ax.tick_params(labelbottom=True, labelleft=True)

        fig1 = plt.figure(constrained_layout=False,figsize=(19.1,9.4))
        gs1 = GridSpec(2, 2, figure=fig1)
        plt.tight_layout()

这是子图图:

ax12 = fig1.add_subplot(gs[0,1])
p1st=plt.plot(Semanas_Oper.index,Semanas_Oper.METEOROLOGICAS, lw=2, c='y', marker='o', ms=8, mfc='red',label='METEOROLOGICA')
p2st=plt.plot(Semanas_Oper.index,Semanas_Oper.HIDROLOGICAS, lw=2, c='b', marker='o', ms=8, mfc='black',label='HIDROLOGICA')
ax12.legend()

此功能绘制许多图形。有没有办法更改仅此时间序列图的大小? 也许要为该特定图像更改功能?

0 个答案:

没有答案