¿Cómo puedo establecer el título de una ventana de figura en 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
python
matplotlib
Omar
fuente
fuente
plt.suptitle('figure title')
yplt.gcf().canvas.set_window_title('window title')
eplt.figure('window title')