copipe Python | 折れ線グラフと0の間を塗りつぶす。

概要

matplotlibでplt.fill_between(x座標, y座標)を使って、折れ線グラフと0(x軸)の間を塗りつぶすことができる。

コード

import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [-5, -1, 9, 6, 5]
plt.figure()
plt.fill_between(x, y)
plt.show()

結果