如何在Matplotlib上的时间轴上绘制矩形?

如何在Matplotlib上的时间轴上绘制矩形?

要在Matplotlib上的时间轴上绘制矩形,我们可以采取以下步骤 –

  • 设置图形大小并调整子图之间和周围的填充。
  • 创建新图或激活现有图形。
  • 使用add_subplot()方法将< strong >’~.axes.Axes’**添加到图中,作为子图排列的一部分。
  • 要定义矩形,请使用datetime和matplotlib日期找到锚点。
  • 使用add_patch()方法将< strong >’~.Patch’**添加到轴。
  • 设置主轴定位器和格式器。
  • 限制x和y轴比例。
  • 要显示图形,请使用show()方法。

示例

from datetime import datetime, timedelta
from matplotlib.patches import Rectangle

import matplotlib.pyplot as plt
import matplotlib.dates as mdates

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

fig = plt.figure()

ax = fig.add_subplot(111)

startTime = datetime.now()
endTime = startTime + timedelta(seconds=1)
start = mdates.date2num(startTime)
end = mdates.date2num(endTime)

width = end – start
rect = Rectangle((start, 0), width, 1, color='red')
ax.add_patch(rect)

locator = mdates.AutoDateLocator(minticks=3)
formatter = mdates.AutoDateFormatter(locator)

ax.xaxis.set_major_locator(locator)
ax.xaxis.set_major_formatter(formatter)

plt.xlim([start - width, end + width])
plt.ylim([-.5, 1.5])

plt.show()

输出

如何在Matplotlib上的时间轴上绘制矩形?

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程