如何在matplotlib中包含另一个图?

时间:2018-10-15 16:09:53

标签: python matplotlib jupyter-notebook

enter image description here

我想添加一个阈值,并想看看哪些条线越过了它。

1 个答案:

答案 0 :(得分:0)

首先将调用的返回值保存到df.plot:

ax = df_6.plot(...)

现在,您具有对绘图的引用({ax是一个matplotlib Axis对象,代表您刚刚绘制的绘图)。然后,您可以像这样向绘图添加一条水平线:

ax.axhline(y=5, color='red')