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


Posted in Python onMay 16, 2020

在使用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.

以上这篇关于matplotlib-legend 位置属性 loc 使用说明就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python 动态获取当前运行的类名和函数名的方法
Apr 15 Python
Python多线程编程(七):使用Condition实现复杂同步
Apr 05 Python
ubuntu安装sublime3并配置python3环境的方法
Mar 15 Python
python实现朴素贝叶斯分类器
Mar 28 Python
利用Pycharm断点调试Python程序的方法
Nov 29 Python
Python实现深度遍历和广度遍历的方法
Jan 22 Python
Python读取YAML文件过程详解
Dec 30 Python
Pytorch之contiguous的用法
Dec 31 Python
详解用Python调用百度地图正/逆地理编码API
Jul 02 Python
mac系统下安装pycharm、永久激活、中文汉化详细教程
Nov 24 Python
python 如何在 Matplotlib 中绘制垂直线
Apr 02 Python
2021年pycharm的最新安装教程及基本使用图文详解
Apr 03 Python
Python matplotlib画图时图例说明(legend)放到图像外侧详解
May 16 #Python
python_matplotlib改变横坐标和纵坐标上的刻度(ticks)方式
May 16 #Python
使用Python matplotlib作图时,设置横纵坐标轴数值以百分比(%)显示
May 16 #Python
Python验证码截取识别代码实例
May 16 #Python
基于plt.title无法显示中文的快速解决
May 16 #Python
基于python生成英文版词云图代码实例
May 16 #Python
解决Python数据可视化中文部分显示方块问题
May 16 #Python
You might like
PHP 文本文章分页代码 按标记或长度(不涉及数据库)
2012/06/07 PHP
ThinkPHP使用心得分享-ThinkPHP + Ajax 实现2级联动下拉菜单
2014/05/15 PHP
php面向对象中static静态属性与方法的内存位置分析
2015/02/08 PHP
必须收藏的23个php实用代码片段
2016/02/02 PHP
js实现页面打印功能实例代码(附去页眉页脚功能代码)
2009/12/15 Javascript
jquery $.ajax()取xml数据的小问题解决方法
2010/11/20 Javascript
基于jQuery架构javascript基础体系
2011/01/01 Javascript
jquery jqPlot API 中文使用教程(非常强大的图表工具)
2011/08/15 Javascript
jQuery向上遍历DOM树之parents(),parent(),closest()之间的区别
2013/12/02 Javascript
jQuery 滑动方法slideDown向下滑动元素
2014/01/16 Javascript
javascript if条件判断方法小结
2014/05/17 Javascript
《JavaScript函数式编程》读后感
2015/08/07 Javascript
bootstrap学习笔记之初识bootstrap
2016/06/21 Javascript
Nodejs中 npm常用命令详解
2016/07/04 NodeJs
详解vue express启动数据服务
2017/07/05 Javascript
微信小程序--获取用户地理位置名称(无须用户授权)的方法
2019/04/29 Javascript
3分钟了解vue数据劫持的原理实现
2019/05/01 Javascript
Nuxt pages下不同的页面对应layout下的页面布局操作
2020/11/05 Javascript
vue element el-transfer增加拖拽功能
2021/01/15 Vue.js
全面了解Python环境配置及项目建立
2016/06/30 Python
python在Windows下安装setuptools(easy_install工具)步骤详解
2016/07/01 Python
Python遍历目录中的所有文件的方法
2016/07/08 Python
用 Python 连接 MySQL 的几种方式详解
2018/04/04 Python
解决py2exe打包后,总是多显示一个DOS黑色窗口的问题
2019/06/21 Python
Python Pandas 转换unix时间戳方式
2019/12/07 Python
python数据爬下来保存的位置
2020/02/17 Python
jupyter 使用Pillow包显示图像时inline显示方式
2020/04/24 Python
python seaborn heatmap可视化相关性矩阵实例
2020/06/03 Python
python爬虫请求头设置代码
2020/07/28 Python
python matplotlib工具栏源码探析二之添加、删除内置工具项的案例
2021/02/25 Python
纯CSS3实现滚动的齿轮动画效果
2014/06/05 HTML / CSS
canvas实现圆形进度条动画的示例代码
2017/12/26 HTML / CSS
银行竞聘上岗演讲稿
2014/09/12 职场文书
单身申明具结书
2015/02/26 职场文书
MySQL 可扩展设计的基本原则
2021/05/14 MySQL
Apache Pulsar集群搭建部署详细过程
2022/02/12 Servers