タイトル: タイトルとラベル
これはMatplotlibのタイトルとラベルに関する記事です。
グラフにはタイトルとラベルを付与することが出来ます。
適当な折れ線グラフを例にして解説します。
タイトルの構文 |
---|
title(タイトル名) |
ラベルの構文 |
---|
xlabel(x軸のラベル名) ylabel(y軸のラベル名) |
例 |
---|
import matplotlib.pyplot as plt x = [2, 4, 8] plt.plot(x, y) plt.title("Test Title") plt.xlabel("Test X Label Name") plt.show() |
出力結果 |
---|