面グラフ
Area Chart_, エリアチャート_
折れ線グラフの下側を塗りつぶしたグラフ
Matplotlib
code:python
x = 1, 2, 3, 4
y = 1, 4, 9, 16
plt.fill_between(x, y)
plt.title("Area Chart Example")
plt.show()
https://gyazo.com/5205c7984eab7446b7af5c14095734a3
積み上げ面グラフ
負の値は表現できない
個々の値の増減が見づらい
上の線も下の線も動くから
/mrsekut-book-4802614446/068 (3.2 線で特徴をとらえる)