猿问

如何在 matplotlib 中设置两个时间格式化程序?

此图表由 Excel 构建。

我怎样才能使用 matplotlib 做同样的事情?

我的意思是如何添加两个格式化程序:

  • 个月。

现在我使用这样的东西:

现在我使用这样的东西:


fig, ax = plt.subplots(1,1)

ax.margins(x=0)

ax.plot(list(df['Date']), list(df['Value']), color="g")

ax.xaxis.set_major_locator(matplotlib.dates.YearLocator())

ax.xaxis.set_major_formatter(matplotlib.dates.DateFormatter('%Y'))

plt.text(df["Date"].iloc[-1], df["Value"].iloc[-1], df["Value"].iloc[-1])

plt.title(title)

plt.get_current_fig_manager().full_screen_toggle()

plt.grid(axis = 'y')

plt.savefig('pict\\'+sheet.cell_value(row,1).split(',')[0]+'.png', dpi=300, format='png')

#plt.show()

plt.close(fig)

它绘制:

http://img.mukewang.com/63e219f200013a9806480471.jpg

ITMISS
浏览 143回答 1
1回答

慕少森

您应该为标签使用辅助轴year,同时为标签使用主要轴month。您可以使用以下内容生成辅助轴:import matplotlib.pyplot as pltfrom mpl_toolkits.axes_grid1 import host_subplotimport mpl_toolkits.axisartist as AAimport matplotlib.dates as mdfig = plt.figure()months = host_subplot(111, axes_class = AA.Axes, figure = fig)plt.subplots_adjust(bottom = 0.1)years = months.twiny()然后你应该将辅助轴移动到底部:offset = -20new_fixed_axis = years.get_grid_helper().new_fixed_axisyears.axis['bottom'] = new_fixed_axis(loc = 'bottom',                                      axes = years,                                      offset = (0, offset))最后,您绘制然后使用 和 调整主轴和次轴md.MonthLocator格式md.YearLocator。这样的事情应该没问题:months.xaxis.set_major_locator(md.MonthLocator(interval = 1))months.xaxis.set_major_formatter(md.DateFormatter('%B'))months.set_xlim([df['Date'].iloc[0], df['Date'].iloc[-1]])years.xaxis.set_major_locator(md.YearLocator(interval = 1))years.xaxis.set_major_formatter(md.DateFormatter('%H'))years.set_xlim([df['Date'].iloc[0], df['Date'].iloc[-1]])
随时随地看视频慕课网APP

相关分类

Python
我要回答