Matplotlib没有在前两个子图中显示xlabel

时间:2015-08-25 22:24:53

标签: python pandas matplotlib

我有一个函数,我已经写过这里显示一些图表:

def plot_price_series(df, ts1, ts2):
    # price series line graph
    fig = plt.figure()
    ax1 = fig.add_subplot(221)
    ax1.plot(df.index, df[ts1], label=ts1)
    ax1.plot(df.index, df[ts2], label=ts2)
    ax1.xaxis.set_major_formatter(mdates.DateFormatter('%b %Y'))
    ax1.set_xlim(df.index[0], df.index[-1])
    ax1.grid(True)

    fig.autofmt_xdate()
    ax1.set_xlabel('Month/Year')
    ax1.set_ylabel('Price')
    ax1.set_title('%s and %s Weekly Prices' % (ts1, ts2))
    plt.legend()

    # Spread
    ax2 = fig.add_subplot(222)
    ax2.plot(df.index, df[ts2] - df[ts1], label=ts2 + " vs " + ts1 + " spread")
    ax2.xaxis.set_major_formatter(mdates.DateFormatter('%b %Y'))
    ax2.set_xlim(df.index[0], df.index[-1])
    ax2.grid(True)
    fig.autofmt_xdate()

    ax2.set_xlabel('Month/Year')
    ax2.set_ylabel('Spread')
    ax2.set_title('%s and %s Weekly Spread' % (ts1, ts2))

    # Scatter w/ line of least square
    ax3 = fig.add_subplot(223)
    m, b = np.polyfit(df[ts1], df[ts2], 1)
    ax3.plot(df[ts1], m * df[ts1] + b, '-k')
    ax3.scatter(df[ts1], df[ts2])
    ax3.grid(True)
    ax3.set_xlabel(ts1)
    ax3.set_ylabel(ts2)
    ax3.set_title('%s and %s Scatter Plot' % (ts1, ts2))

    ax4 = fig.add_subplot(224)
    corr = pd.rolling_corr(df[ts1], df[ts2], window=10)
    ax4.plot(df.index, corr)
    ax4.xaxis.set_major_formatter(mdates.DateFormatter('%b %Y'))
    ax4.set_xlim(df.index[0], df.index[-1])
    ax4.grid(True)
    fig.autofmt_xdate()

    ax4.set_xlabel('Month/Year')
    ax4.set_ylabel('Price ($)')
    ax4.set_title('Rolling 10-week Correlation')

    plt.show()

但是,当我使用有效数据运行此功能时,前两个图表xlabelax1的{​​{1}}都不会显示,也不会显示任何日期我需要展示的价值观。图表如下:

Current Subplots

关于如何解决这个问题的任何想法,以便我可以看到xlabels和x轴值?我尝试了ax2提出的许多其他答案,但无济于事。

1 个答案:

答案 0 :(得分:5)

我认为问题出在fig.autofmt_xdate()上。您的日期x轴在不同的子图中都是相同的,并且fig.autofmt_xdate()倾向于使用sharex格式,以便日期x轴仅显示在一个子图中。