matplotlib.pyplot:在子图中添加水平线

时间:2018-04-07 18:28:32

标签: python matplotlib plot line

这段代码(matplotlib.pyplot)给出了以下链接中的图:

plt.subplot(2, 1, 1)
plt.plot(px,py)

plt.subplot(2, 1, 2)
plt.plot(curve)

2 plots example - >我想在第二个子图中添加一条水平线,位于100.000。我怎样才能做到这一点?两个图的颜色应保持相同/同步。

1 个答案:

答案 0 :(得分:1)

您可以使用matplotlib的matplotlib.axes.Axes.axhline,它在轴上添加一条水平线。如果您需要设置任何其他参数,请参阅official documentation

import matplotlib.pyplot as plt    
plt.axhline(100000, color="gray")