Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Figure模块提供了顶层Artist,即Figure,其中包含所有绘图元素。此模块用于控制所有图元的子图和顶层容器的默认间距。
matplotlib.figure.Figure.legend()方法
matplotlib库的legend()方法图形模块用于在图形上放置图例。
用法: legend(self, *args, **kwargs)
参数:此方法接受下面讨论的以下参数:
- handles:此参数是要添加到图例的艺术家列表(线条,补丁)。
- labels:此参数是在艺术家旁边显示的标签列表。
返回值:此方法返回matplotlib.legend.Legend实例。
以下示例说明了matplotlib.figure中的matplotlib.figure.Figure.legend()函数:
范例1:
# Implementation of matplotlib function
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
line1, = ax.plot([1, 2, 3],
label ="Line 1",
color ="black",
linewidth = 4,
linestyle =':')
line2, = ax.plot([3, 2, 1],
label ="Line 2",
color ="green",
linewidth = 4)
first_legend = ax.legend(handles =[line1],
loc ='upper center')
ax.add_artist(first_legend)
fig.legend(handles =[line2], loc ='lower center')
fig.suptitle("""matplotlib.figure.Figure.legend()
function Example\n\n""", fontweight ="bold")
plt.show()
输出:
范例2:
# Implementation of matplotlib function
import numpy as np
np.random.seed(19680801)
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
for color in [ 'tab:green', 'tab:blue', 'tab:orange']:
n = 70
x, y = np.random.rand(2, n)
scale = 1000.0 * np.random.rand(n)
ax.scatter(x, y, c = color, s = scale, label = color,
alpha = 0.35)
fig.legend()
ax.grid(True)
fig.suptitle("""matplotlib.figure.Figure.legend()
function Example\n\n""", fontweight ="bold")
plt.show()
输出:
相关用法
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.figure.Figure.legend() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。