【Matplotlib】 增長圖例

相關文檔:html

控制圖例入口

無參調用 legend() 會自動獲取圖例 handles 以及相關的 labels。其對應於如下代碼:ui

handles, labels = ax.get_legend_handles_labels()
ax.legend(handles, labels)

get_legend_handles_labels()方法返回 存在於圖像中的 handles/artists 列表,這些圖像能夠用來生成結果圖例中的入口。值得注意的是並非全部的 artists 均可以被添加到圖例中。spa

爲了所有控制添加到圖例中的內容,一般直接傳遞適量的 handles 給legend()函數。code

line_up, = plt.plot([1,2,3], label='Line 2')
line_down, = plt.plot([3,2,1], label='Line 1')
plt.legend(handles=[line_up, line_down])

某些狀況下,不太可能設置 handle 的 label,因此須要傳遞 labels 的列表給 legend()htm

line_up, = plt.plot([1,2,3], label='Line 2')
line_down, = plt.plot([3,2,1], label='Line 1')
plt.legend([line_up, line_down], ['Line Up', 'Line Down'])

綜合例子以下:文檔

import numpy as np
import matplotlib.pyplot as plt

plt.figure(figsize=(8,5), dpi=80)
plt.subplot(111)

X = np.linspace(-np.pi, np.pi, 256,endpoint=True)
C = np.cos(X)
S = np.sin(X)

plt.plot(X, C, color="blue", linewidth=2.5, linestyle="-", label="cosine")
plt.plot(X, S, color="red", linewidth=2.5, linestyle="-",  label="sine")

ax = plt.gca()
ax.spines['right'].set_color('none')
ax.spines['top'].set_color('none')
ax.xaxis.set_ticks_position('bottom')
ax.spines['bottom'].set_position(('data',0))
ax.yaxis.set_ticks_position('left')
ax.spines['left'].set_position(('data',0))

plt.xlim(X.min() * 1.1, X.max() * 1.1)
plt.xticks([-np.pi, -np.pi/2, 0, np.pi/2, np.pi],
  [r'$-\pi$', r'$-\pi/2$', r'$0$', r'$+\pi/2$', r'$+\pi$'])

plt.ylim(C.min() * 1.1, C.max() * 1.1)
plt.yticks([-1, +1],
  [r'$-1$', r'$+1$'])

plt.legend(loc='upper left')

plt.show()

圖像表現形式以下:get

相關文章
相關標籤/搜索