创造一个人物
该图包含所有绘图元素。在 matplotlib
中创建一个人物的主要方法是使用 pyplot
。
import matplotlib.pyplot as plt
fig = plt.figure()
你可以选择提供一个数字,你可以使用该数字访问以前创建的数字。如果没有提供数字,最后创建的数字的 ID 将增加并改为使用; 数字从 1 开始索引,而不是 0。
import matplotlib.pyplot as plt
fig = plt.figure()
fig == plt.figure(1) # True
数字也可以用字符串标识,而不是数字。如果使用交互式后端,这也将设置窗口标题。
import matplotlib.pyplot as plt
fig = plt.figure('image')
选择数字使用
plt.figure(fig.number) # or
plt.figure(1)