博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python matplotlib如何将图例放在图外
阅读量:4286 次
发布时间:2019-05-27

本文共 3674 字,大约阅读时间需要 12 分钟。

原文地址:http://blog.csdn.net/john_xyz/article/details/54754937

关于matplotlib如何设置图例的位置?如何将图例放在图外?以及如何在一幅图有多个子图的情况下,删除重复的图例?我用一个简单的例子说明一下。

import pandas as pdimport numpy as npimport matplotlib.pyplot as pltfig = plt.figure(1)ax1 = fig.add_subplot(2,2,1)ax2 = fig.add_subplot(2,2,2)ax3 = fig.add_subplot(2,2,3)ax4 = fig.add_subplot(2,2,4)df1 = pd.DataFrame(np.random.randn(3,5),columns = ['one','two','three','four','five'])df2 = pd.DataFrame(np.random.randn(3,5),columns = ['one','two','three','four','five'])df3 = pd.DataFrame(np.random.randn(3,5),columns = ['one','two','three','four','five'])df4 = pd.DataFrame(np.random.randn(3,5),columns = ['one','two','three','four','five'])df1.plot(ax = ax1, title = "df1", grid = 'on')df2.plot(ax = ax2, title = "df1", grid = 'on')df3.plot(ax = ax3, title = "df1", grid = 'on')df4.plot(ax = ax4, title = "df1", grid = 'on')plt.show() 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

运行结果如下 
这里写图片描述 
可以看出,随机生成了几个dataframe,在一个figure()中生成了四个子图,每个子图的图例都是dataframe.columns里的值,那么如何移除这些图例?

import pandas as pdimport numpy as npimport matplotlib.pyplot as pltfig = plt.figure(1)ax1 = fig.add_subplot(2,2,1)ax2 = fig.add_subplot(2,2,2)ax3 = fig.add_subplot(2,2,3)ax4 = fig.add_subplot(2,2,4)df1 = pd.DataFrame(np.random.randn(3,5),columns = ['one','two','three','four','five'])df2 = pd.DataFrame(np.random.randn(3,5),columns = ['one','two','three','four','five'])df3 = pd.DataFrame(np.random.randn(3,5),columns = ['one','two','three','four','five'])df4 = pd.DataFrame(np.random.randn(3,5),columns = ['one','two','three','four','five'])df1.plot(ax = ax1, title = "df1", grid = 'on')df2.plot(ax = ax2, title = "df1", grid = 'on')df3.plot(ax = ax3, title = "df1", grid = 'on')df4.plot(ax = ax4, title = "df1", grid = 'on')ax1.legend_.remove()        ##移除子图ax1中的图例ax2.legend_.remove()        ##移除子图ax2中的图例ax3.legend_.remove()        ##移除子图ax3中的图例plt.show() 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

这里写图片描述 
可以看出ax1,ax2,ax3中的图例都被移除了,但是上图还不是很美观?有没有什么办法将图例放到图外面呢?请看:

import pandas as pdimport numpy as npimport matplotlib.pyplot as pltfig = plt.figure(1)ax1 = fig.add_subplot(2,2,1)ax2 = fig.add_subplot(2,2,2)ax3 = fig.add_subplot(2,2,3)ax4 = fig.add_subplot(2,2,4)df1 = pd.DataFrame(np.random.randn(3,5),columns = ['one','two','three','four','five'])df2 = pd.DataFrame(np.random.randn(3,5),columns = ['one','two','three','four','five'])df3 = pd.DataFrame(np.random.randn(3,5),columns = ['one','two','three','four','five'])df4 = pd.DataFrame(np.random.randn(3,5),columns = ['one','two','three','four','five'])df1.plot(ax = ax1, title = "df1", grid = 'on')df2.plot(ax = ax2, title = "df1", grid = 'on')df3.plot(ax = ax3, title = "df1", grid = 'on')df4.plot(ax = ax4, title = "df1", grid = 'on')ax1.legend_.remove()ax2.legend_.remove()ax3.legend_.remove()ax4.legend(loc=2, bbox_to_anchor=(1.05,1.0),borderaxespad = 0.)     ##设置ax4中legend的位置,将其放在图外plt.show() 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

这里写图片描述

其中参数loc用于设置legend的位置 
bbox_to_anchor用于在bbox_transform坐标(默认轴坐标)中为图例指定任意位置。

关于plt.legend更多的参数信息,详细见官方文档: 
关于legend的官方教程:详细见: 
关于pandas.DataFrame.plot更多的作图问题,详细见:

你可能感兴趣的文章
Android UI根据屏幕分辨率决定加载布局
查看>>
Java面试总结
查看>>
Processing of multipart/form-data request failed. Stream ended unexpectedly
查看>>
Linux上定时备份MySQL数据库
查看>>
xml解析之PULL
查看>>
安卓大神开源项目
查看>>
快递轨迹第三方接口接入(快递鸟)
查看>>
java多线程详解(一)
查看>>
将字符串写入磁盘
查看>>
Eclipse背景颜色修改--护眼色,黑色
查看>>
java交互:通知和等待
查看>>
计算两个坐标之间的距离
查看>>
java实现日期加一天
查看>>
Animation动画之alpha
查看>>
根据不同系统(ios、android、win等)的浏览器跳转到不同的地方
查看>>
android开机引导导航功能ViewPager
查看>>
android开机引导导航功能ViewPager(二)--增加导航页小横条指示
查看>>
获得用户安卓设备的唯一编号
查看>>
支付宝接口开发:客户端服务器端
查看>>
OFFICE 2010卸载 提示“安装程序包的语言不受系统支持”的解决方法
查看>>