matplotlib.pyplot.subplots() - 如何设置图的名称?

时间:2014-08-19 15:29:56

标签: python matplotlib

当我使用Figure() - PyPlot函数创建单个图时,我可以使用字符串作为参数设置出现窗口的名称:

import matplotlib.pyplot as plt
figure = plt.figure('MyName')

函数plt.subplots()不接受字符串作为第一个参数。例如:

plt.subplots(2,2)  # for creating a window with 4 subplots

那么如何设置图的名称?

2 个答案:

答案 0 :(得分:14)

取自the docs

import matplotlib.pyplot as plt

#...

# Just a figure and one subplot
f, ax = plt.subplots()
ax.plot(x, y)
ax.set_title('Simple plot')

并且,要更改窗口的标题:

import matplotlib.pyplot as plt 
fig = plt.figure() 
fig.canvas.set_window_title('My Window Title') 
plt.show() 

答案 1 :(得分:0)

你也可以这样做:

I think this link will help you 

https://api.zopim.com/files/meshim/widget/controllers/liveChatAPI/Window-js.html#$zopim.livechat.window.setSize

其中f, axarr = plt.subplots(2,2, num = PlotName) 是一个字符串,因此您可以在实例化时生成窗口名称