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

matplotlibpythondata visualization

要在 matplotlib 中的财务图表中跳过周末,我们可以迭代数据框中的时间,如果工作日是 5 或 6,则跳过绘图。

步骤

  • 设置图形大小并调整子图之间和周围的填充。

  • 使用时间创建一个数据框。

  • 迭代日期框架的压缩索引和时间。

  • 如果迭代的时间戳有工作日 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()

输出


相关文章