使用 Matplotlib 根据时间绘制事件的方法是什么?
要使用 Matplotlib 根据时间绘制事件,我们可以采用以下步骤:
- 设置图形尺寸,调整子图之间和周围的空白。
- 制作可能发生事件的数据点列表。
- 绘制一条水平线,带有 y,xmin 和 xmax。
- 绘制位于给定位置的相同的平行线。
- 要显示图形,请使用 show() 方法。
示例
import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True a = [1, 2, 5, 6, 9, 11, 15, 17, 18] plt.hlines(1, 0, 24) plt.eventplot(a, orientation='horizontal', colors='b') plt.show()
输出
广告