matplotlib 创建人物

示例

该图包含所有绘图元素。创建图形的主要方法matplotlib是使用pyplot。

importmatplotlib.pyplotas plt
fig = plt.figure()

您可以选择提供一个数字,该数字可用于访问先前创建的图形。如果未提供数字,则最后创建的图形的ID将增加并使用;数字从1开始索引,而不是0。

importmatplotlib.pyplotas plt
fig = plt.figure()
fig == plt.figure(1)  # True

数字也可以用字符串代替数字,而不是数字。如果使用交互式后端,这还将设置窗口标题。

importmatplotlib.pyplotas plt
fig = plt.figure('image')

选择人物使用

plt.figure(fig.number) # or
plt.figure(1)