关于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 中文字符串的处理实现代码
Oct 25 Python
Python操作json数据的一个简单例子
Apr 17 Python
Python 实现网页自动截图的示例讲解
May 17 Python
Python 找到列表中满足某些条件的元素方法
Jun 26 Python
Python分析彩票记录并预测中奖号码过程详解
Jul 09 Python
Python实现代码统计工具
Sep 19 Python
解决redis与Python交互取出来的是bytes类型的问题
Jul 16 Python
python 实现单例模式的5种方法
Sep 23 Python
Python爬虫中Selenium实现文件上传
Dec 04 Python
python 实现全球IP归属地查询工具
Dec 18 Python
10个顶级Python实用库推荐
Mar 04 Python
Python List remove()实例用法详解
Aug 02 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速度全攻略
2006/10/09 PHP
php 获取可变函数参数的函数
2009/08/26 PHP
获取URL文件名后缀
2013/10/24 PHP
php遍历类中包含的所有元素的方法
2015/05/12 PHP
thinkphp关于简单的权限判定方法
2017/04/03 PHP
PHP获取当前系统时间的方法小结
2018/10/03 PHP
CI框架网页缓存简单用法分析
2018/12/26 PHP
jQuery find和children方法使用
2011/01/31 Javascript
iphone safari不支持position fixed的解决方法
2012/05/04 Javascript
jQuery实现点击小图显示大图代码分享
2015/08/25 Javascript
javascript的列表切换【实现代码】
2016/05/03 Javascript
Angularjs中的ui-bootstrap的使用教程
2017/02/19 Javascript
Nodejs--post的公式详解
2017/04/29 NodeJs
在vscode中统一vue编码风格的方法
2018/02/22 Javascript
vue webpack实用技巧总结
2018/04/24 Javascript
基于Vue2x的图片预览插件的示例代码
2018/05/14 Javascript
vue 下列表侧滑操作实例代码详解
2018/07/24 Javascript
React中获取数据的3种方法及优缺点
2020/02/18 Javascript
js实现页面图片消除效果
2020/03/24 Javascript
简单了解JavaScript弹窗实现代码
2020/05/07 Javascript
关于Js中new操作符的作用详解
2021/02/21 Javascript
深入理解python try异常处理机制
2016/06/01 Python
Python绘制并保存指定大小图像的方法
2019/01/10 Python
python 回溯法模板详解
2020/02/26 Python
css3学习之2D转换功能详解
2016/12/23 HTML / CSS
Roxy美国官网:澳大利亚冲浪、滑雪健身品牌
2016/07/30 全球购物
中国领先的专业演出票务网:永乐票务
2016/08/29 全球购物
syb养殖创业计划书
2014/01/09 职场文书
幼儿园大班毕业感言
2014/02/06 职场文书
献爱心捐款倡议书
2014/05/14 职场文书
李开复演讲稿
2014/05/24 职场文书
工商管理专业自荐信
2014/06/03 职场文书
创建绿色社区汇报材料
2014/08/22 职场文书
护理专业自我评价
2015/03/11 职场文书
给朋友的道歉短信
2015/05/12 职场文书
Java中Quartz高可用定时任务快速入门
2022/04/03 Java/Android