如何在 Pandas 中的时间序列图上绘制垂直线?
pythonpandasserver side programmingprogramming
使用 Pandas,我们将创建一个数据框,并使用 axvline 线在创建的轴上设置垂直线。
步骤
使用 panda 我们可以创建一个数据框。
创建数据框将有助于创建帮助。
使用 axvline(),在轴上添加一条垂直线,颜色为绿色,linestyle="dashed"。
使用 axvline(),在轴上添加一条垂直线,颜色为红色,linestyle="dashed"。
使用 plt.show(),显示绘图。
示例
import pandas as pd from matplotlib import pyplot as plt df = pd.DataFrame(index=pd.date_range("2019-07-01", "2019-07-31")) df["y"] = 1 ax = df.plot() ax.axvline("2019-07-24", color="green", linestyle="dashed") ax.axvline("2019-07-31", color="red", linestyle="dashed") plt.show()