copipe Python | グラフに横線を引く。

概要

plt.axhline(y座標, color="色", linestyle="線の種類")を使って、plotしたグラフへ横線を引くことができる。

コード

import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y = [1, 4, 9, 16]
plt.plot(x, y)
plt.axhline(10, color="gray", linestyle="dashed")
plt.show()

結果