創造一個人物
該圖包含所有繪圖元素。在 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)