Làm cách nào để đặt tiêu đề của cửa sổ hình trong pylab / python?
fig = figure(9) # 9 is now the title of the window
fig.set_title("Test") #doesn't work
fig.title = "Test" #doesn't work
Câu trả lời:
Nếu bạn thực sự muốn thay đổi cửa sổ, bạn có thể làm:
fig = pylab.gcf()
fig.canvas.set_window_title('Test')
from pylab import *
và pylab.title("test")
và title("test")
không làm việc.
Bạn cũng có thể đặt tiêu đề cửa sổ khi tạo hình:
fig = plt.figure("YourWindowName")
If num is a string, the window title will be set to this figure's num.
Tôi thấy hầu hết mọi người đều vượt qua một con số, vì vậy việc vượt qua tiêu đề trực tiếp sẽ tốt hơn nhiều. Cảm ơn bạn!
.figure()
tạo một hình mới figure
trong khi .gcf()
viết tắt của get figure current, đó là những gì nó thực sự làm.
plt.suptitle('figure title')
vàplt.gcf().canvas.set_window_title('window title')
vàplt.figure('window title')