मैं पायलैब / अजगर में एक आंकड़ा विंडो का शीर्षक कैसे सेट कर सकता हूं?
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.
मैं देखता हूं कि ज्यादातर लोग एक संख्या में पास होते हैं, इसलिए सीधे शीर्षक में पास करना इतना बेहतर होगा। धन्यवाद!
.figure()
एक नया बनाने figure
जबकि .gcf()
खड़ा के लिए है जो यह वास्तव में करता है वर्तमान आंकड़ा मिलता है।
plt.suptitle('figure title')
औरplt.gcf().canvas.set_window_title('window title')
औरplt.figure('window title')