如何在财务 Matplotlib Python 图表中跳过空白的日期(周末)?


为了在 matplotlib 的财务图表中跳过周末,我们可以迭代数据框中的时间,如果星期几是 5 或 6,则跳过该绘图。

步骤

  • 设置图形大小并调整子图形之间的内边距和周围的内边距。

  • 创建一个带有时间的 data frame。

  • 迭代日期帧的索引和时间。

  • 如果迭代时间戳的星期几为 5 或 6,则不绘制它们。

  • 除了 5 或 6 个星期几以外,绘制这些点。

  • 设置 Y 轴的当前刻度位置。

  • 绘制带有网格线的坐标系。

  • 为显示图形,使用show()

示例

import pandas as pd
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
df = pd.DataFrame(dict(time=list(pd.date_range(start="2021-01-01", end="2021-01-15"))))
for i, t in zip(df.index, df.time):
   if t.weekday() in (5, 6):
      pass
   else:
      plt.plot(i, t, marker="*", ms=10)
plt.yticks(df.time)
plt.grid(True)
plt.show()

输出

更新于: 01-Jun-2021

1K+ 浏览

开始你的 事业

完成课程并获得认证

开始
广告