matplotlib 设置legend的位置在轴最上方,长度与图的长度相同

复制代码
import matplotlib.pyplot as plt
import numpy as np

x1 = np.linspace(0, 10, 50)
x2 = [6,4,3]

ax = plt.subplot()
ax.plot(x1, label="test1")
ax.plot(x2, label="test2")
# 设置图例的位置
# 将左下角放置在【0, 1.02】位置处,横为1,纵为0.102
# borderaxespad:设置坐标轴与图例外边框的间距
ax.legend(bbox_to_anchor=(0, 1.02, 1, 0.102), 
loc='lower left',ncol=2, mode="expand", borderaxespad=0)

plt.show()


参考文献:

相关推荐
啊阿狸不会拉杆17 小时前
第二十章:Python-Matplotlib库实现函数可视化
开发语言·python·matplotlib
夜松云7 天前
Python数据可视化与数据处理全解析:Matplotlib图形控制与Pandas高效数据分析实战
python·算法·信息可视化·pandas·matplotlib
蹦蹦跳跳真可爱5897 天前
Python----数据分析(足球运动员数据分析)
python·数据挖掘·数据分析·pandas·matplotlib
无闻墨客7 天前
数据可视化(matplotlib)-------图表样式美化
python·信息可视化·matplotlib
IT从业者张某某8 天前
Python数据可视化-第1章-数据可视化与matplotlib
python·信息可视化·matplotlib
杜子腾dd8 天前
5.Matplotlib:高级绘图
大数据·python·信息可视化·自动化·matplotlib·数据可视化
慕丹9 天前
知识周汇 | 用 matplotlib 轻松绘制折线图、散点图、柱状图、直方图
python·pandas·matplotlib
qq_2147826110 天前
matplotlib——南丁格尔玫瑰
python·matplotlib
杜子腾dd10 天前
4.Matplotlib:基础绘图
大数据·python·excel·matplotlib
Mr数据杨12 天前
Jupyter Notebook中解决matplotlib绘图中文乱码的实用方案
ide·jupyter·matplotlib