pylab / python에서 Figure 창의 제목을 어떻게 설정할 수 있습니까?
fig = figure(9) # 9 is now the title of the window
fig.set_title("Test") #doesn't work
fig.title = "Test" #doesn't work
답변:
실제로 창을 변경하려면 다음을 수행 할 수 있습니다.
fig = pylab.gcf()
fig.canvas.set_window_title('Test')
from pylab import *
및 pylab.title("test")
및 title("test")
작업을하지 않습니다.
Figure를 만들 때 창 제목을 설정할 수도 있습니다.
fig = plt.figure("YourWindowName")
If num is a string, the window title will be set to this figure's num.
대부분의 사람들은 숫자를 전달하므로 제목을 직접 전달하는 것이 훨씬 낫습니다. 감사합니다!
plt.suptitle('figure title')
과plt.gcf().canvas.set_window_title('window title')
와plt.figure('window title')