我已经绘制了一幅图,如下图所示。
如何不显示红框所包围的位?
代码如下:
import matplotlib.dates as md
import matplotlib.pyplot as plt
fig = plt.figure()
ax=fig.add_subplot(1,1,1)
plt.plot(ListTime,ListLeiture)
hours = md.HourLocator(byhour=range(8,16,1))
fmt = md.DateFormatter('%d\n%H:%m:%S')
ax.xaxis.set_major_locator(hours)
ax.xaxis.set_major_formatter(fmt)
fig.autofmt_xdate(bottom=0.2, rotation=45)
ax.grid()
plt.show()