gpt4 book ai didi

python - 如何在 x 轴上设置日期刻度标签,仅适用于 matplotlib 上的给定点

转载 作者:太空狗 更新时间:2023-10-30 01:02:54 28 4
gpt4 key购买 nike

我正在尝试在 x 轴上设置日期刻度标签,仅针对给定的点。例如,如果我有一个 x 轴值的日期时间列表

x = [ datetime.datetime(..), ... , datetime.datetime()]

我尝试使用 ax.xaxis.set_ticklabels(x)

我只想为列表中存在的六个点中的每一个绘制日期,但我得到了这个结果:

plot

我用来获取此图的代码如下:

# figure's size in inch
fig = Figure(figsize=(8, 8))
# axes' position
ax = Axes(fig, [.1, .1, .8, .8])
ax.errorbar(matplotlib.dates.date2num(x), y, yerr=el['e'], fmt=format_string, label=label)

# shrinks current axis to 90%
box = ax.get_position()
ax.set_position([box.x0, box.y0, box.width * 0.9, box.height])
# puts a legend to the right of the current axis
ax.legend(loc='center left', bbox_to_anchor=(1, 0.5))
# autoscales axes following data limits
ax.autoscale(tight=False)

dateFmt = matplotlib.dates.DateFormatter('%Y-%m-%d')
ax.xaxis.set_major_formatter(dateFmt)
monthsLoc = matplotlib.dates.MonthLocator()
daysLoc = matplotlib.dates.DayLocator(interval=1)
ax.xaxis.set_major_locator(monthsLoc)
ax.xaxis.set_minor_locator(daysLoc)
fig.autofmt_xdate(bottom=0.18)

# I tried to set tick labels with this but with no results
#ax.xaxis.set_ticklabels(x)
# adds axes to figure
fig.add_axes(ax)
# creates a canvas from figure
canvas = FigureCanvasAgg(fig)
# saves figure to filesystem in png format
canvas.print_figure(settings.MEDIA_ROOT + file_relative_path)

我做错了什么?

谢谢

最佳答案

要设置刻度及其标签,请使用:

x = [ datetime.datetime(..), ... , datetime.datetime()]
ax.xaxis.set_ticks(x)

关于python - 如何在 x 轴上设置日期刻度标签,仅适用于 matplotlib 上的给定点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12857683/

28 4 0