关于matplotlib-legend 位置属性 loc 使用说明

作者:拦路雨g 时间:2021-12-19 06:48:25 

在使用matplotlib画图时,少不了对性能图形做出一些说明和补充。一般情况下,loc属性设置为'best'就足够应付了

plt.legend(handles = [l1, l2,], labels = ['a', 'b'], loc = 'best')

或直接loc = 0

plt.legend(handles = [l1, l2,], labels = ['a', 'b'], loc = 0)

关于matplotlib-legend 位置属性 loc 使用说明

除'best',另外loc属性有:

'upper right', 'upper left', 'lower left', 'lower right', 'right', 'center left', 'center right', 'lower center', 'upper center', 'center'

关于matplotlib-legend 位置属性 loc 使用说明

不说太多,上面是全部的快捷使用,满足一般需求。

demo:


import matplotlib.pyplot as plt
import numpy as np

# 绘制普通图像
x = np.linspace(-1, 1, 50)
y1 = 2 * x + 1
y2 = x**2

plt.figure()
# 在绘制时设置lable, 逗号是必须的
l1, = plt.plot(x, y1, label = 'line')
l2, = plt.plot(x, y2, label = 'parabola', color = 'red', linewidth = 1.0, linestyle = '--')

# 设置坐标轴的取值范围
plt.xlim((-1, 1))
plt.ylim((0, 2))

# 设置坐标轴的lable
plt.xlabel('X axis')
plt.ylabel('Y axis')

# 设置x坐标轴刻度, 原来为0.25, 修改后为0.5
plt.xticks(np.linspace(-1, 1, 5))
# 设置y坐标轴刻度及标签, $$是设置字体
plt.yticks([0, 0.5], ['$minimum$', 'normal'])

# 设置legend
plt.legend(handles = [l1, l2,], labels = ['a', 'b'], loc = 'best')
plt.show()

运行结果:

关于matplotlib-legend 位置属性 loc 使用说明

补充知识:设置图列(key/legend)的位置和大小 --gnuplot

先看几个例子:

//不显示图例。
unset key
//设置图例 显示在图形(内)的顶部居中,并且多个图例水平显示。
set key top horizontal center
//设置图例 显示在图形(外)的顶部居中,并且多个图例水平显示。
set key top outside horizontal center
//设置图例 显示的字体并加粗。
set key font "Times,18,Bold"
//调整图例行间隔
set key spacing 3
//调整图例中线段示例长度
set key samplen 2

set key 的语法规则


Syntax:
  set key {on|off} {default}
      {{inside | outside} | {lmargin | rmargin | tmargin | bmargin}
       | {at <position>}}
      {left | right | center} {top | bottom | center}
      {vertical | horizontal} {Left | Right}
      {{no}reverse} {{no}invert}
      {samplen <sample_length>} {spacing <vertical_spacing>}
      {width <width_increment>}
      {height <height_increment>}
      {{no}autotitle {columnheader}}
      {title "<text>"} {{no}enhanced}
      {{no}box { {linestyle | ls <line_style>}
           | {linetype | lt <line_type>}
            {linewidth | lw <line_width>}}}
  unset key
  show key

Elements within the key are stacked according to vertical or horizontal. In the case of vertical, the key occupies as few columns as possible. That is, elements are aligned in a column until running out of vertical space at which point a new column is started. In the case of horizontal, the key occupies as few rows as possible.

图例是依据我们设置的水平显示或垂直显示进行堆叠式地显示。

对于垂直显示,pnuplot会占用尽可能少的行来放置我们的图例,当图例在一行显示不下时,它会另启一行来显示。

对于水平显示方式,pnuplot会占用尽可能少的列来放置我们的图例,当图例在一列显示不下时,它会另启一列来放置。

The vertical spacing between lines is controlled by spacing. The spacing is set equal to the product of the pointsize, the vertical tic size, and vertical_spacing. The program will guarantee that the vertical spacing is no smaller than the character height.

The defaults for set key are on, right, top, vertical, Right, noreverse, noinvert, samplen 4, spacing 1.25, title “”, and nobox.

来源:https://blog.csdn.net/lanluyug/article/details/80002273

标签:matplotlib,legend,loc
0
投稿

猜你喜欢

  • flask应用部署到服务器的方法

    2023-11-25 16:59:38
  • 从多个tfrecord文件中无限读取文件的例子

    2023-10-23 13:29:19
  • Go语言实现socket实例

    2024-02-04 20:17:30
  • pygame学习笔记(4):声音控制

    2021-08-15 20:04:35
  • 60个vue常用工具类

    2024-06-07 16:03:50
  • 前端node Session和JWT鉴权登录示例详解

    2024-05-09 14:49:58
  • 详谈套接字中SO_REUSEPORT和SO_REUSEADDR的区别

    2023-06-07 14:24:23
  • IE浏览器兼容Firefox的JS脚本的代码

    2024-04-10 13:58:15
  • php+mysql开发的最简单在线题库(在线做题系统)完整案例

    2023-08-21 20:03:14
  • 五个Pandas 实战案例带你分析操作数据

    2021-04-02 18:46:05
  • 利用rest framework搭建Django API过程解析

    2021-08-09 21:33:46
  • python实现微信跳一跳辅助工具步骤详解

    2023-08-02 11:11:40
  • pygame库实现俄罗斯方块小游戏

    2022-09-11 10:43:37
  • Python实现简易版的Web服务器(推荐)

    2021-04-21 04:41:15
  • SQL语法CONSTRAINT约束操作详情

    2024-01-23 16:24:20
  • Python微服务开发之使用FastAPI构建高效API

    2022-04-20 21:51:13
  • 解决pygal.style的LightColorizedStyle参数问题

    2023-09-20 06:39:02
  • joomla组件开发入门教程

    2024-05-05 09:18:46
  • JavaScript ES6 Class类实现原理详解

    2024-02-24 07:54:49
  • 清理你的CSS

    2009-10-06 15:11:00
  • asp之家 网络编程 m.aspxhome.com