Matplotlib 그림 facecolor (배경색) 누군가 그림의 얼굴 색상을 설정할 때 아래 코드가 작동하지 않는 이유를 설명해 주시겠습니까? import matplotlib.pyplot as plt # create figure instance fig1 = plt.figure(1) fig1.set_figheight(11) fig1.set_figwidth(8.5) rect = fig1.patch rect.set_facecolor('red') # works with plt.show(). # Does not work with plt.savefig("trial_fig.png") ax = fig1.add_subplot(1,1,1) x = 1, 2, 3 y = 1, 4, 9 ax.plot(x, y) # plt...