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")
ません。
フィギュアを作成するときにウィンドウのタイトルを設定することもできます。
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')