Python matplotlib グラフの背景色を変えるサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
import matplotlib.pyplot as plt
//グラフを描画する前に、axes()を呼び出します
ax = plt.axes()
//背景色を設定します
ax.set_facecolor(背景色)
使用例
import matplotlib.pyplot as plt x = [21, 42, 53, 64, 75, 86] y = [10, 24, 16, 19, 15, 17] ax = plt.axes() ax.set_facecolor('green') plt.plot(x, y) plt.show()