python matplotlib中的subplot函数使用详解


Posted in Python onJanuary 19, 2020

python里面的matplotlib.pylot是大家比较常用的,功能也还不错的一个包。基本框架比较简单,但是做一个功能完善且比较好看整洁的图,免不了要网上查找一些函数。于是,为了节省时间,可以一劳永逸。我把常用函数作了一个总结,最后写了一个例子,以后基本不用怎么改了。

一、作图流程:

1.准备数据, , 3作图, 4定制, 5保存, 6显示

1.数据可以是numpy数组,也可以是list

2创建画布:

import matplotlib.pyplot as plt
#figure(num=None, figsize=None, dpi=None, facecolor=None, edgecolor=None, frameon=True)
 
#num:图像编号或名称,数字为编号 ,字符串为名称
#figsize:指定figure的宽和高,单位为英寸;
#dpi参数指定绘图对象的分辨率,即每英寸多少个像素,缺省值为80 ,1英寸等于2.5cm,A4纸是 21*30cm的纸张 
#facecolor:背景颜色
#edgecolor:边框颜色
#frameon:是否显示边
 
fig = plt.figure()
fig = plt.figure(figsize=(8,6), dpi=80) 
 
fig.add_axes()
fig, axes = plt.subplos(nrows = 2, ncols = 2) #axes是长度为4的列表

3、作图路线

一维数据:

axes[0, 0].plot(x, y)
axes[0,1].bar([1,2,3], [2,4,8])
axes[0,2].barh([1,2,3], [2,4,8])
axes[1,0].axhline(0.45)
axes[1, 1].scatter(x, y)
axes[1,2].axvline(0.65)
axes[2,0].fill(x,y, color = 'blue')
axes[2,1].fill_between(x,y, color = 'blue')
axes[2,2].violinplot(y)
axes[0,3].arrow(0,0,0.5,0.5)
axes[1,3].quiver(x,y)

4, 定制

plt.plot(x,y, alpha=0.4, c = 'blue', maker = 'o')
#颜色,标记,透明度
 
# 显示数学文本
 
t = np.arange(0.0, 2.0, 0.01)
s = np.sin(2*np.pi*t)
 
plt.plot(t,s)
plt.title(r'$\alpha_i > \beta_i$', fontsize=20)
plt.text(1, -0.6, r'$\sum_{i=0}^\infty x_i$', fontsize=20)
plt.text(0.6, 0.6, r'$\mathcal{A}\mathrm{sin}(2 \omega t)$',
     fontsize=20)
plt.xlabel('time (s)')
plt.ylabel('volts (mV)')
 
fig = plt.figure()
fig.suptitle('bold figure suptitle', fontsize=14, fontweight='bold')
 
ax = fig.add_subplot(111)
fig.subplots_adjust(top=0.85)
ax.set_title('axes title')
 
ax.set_xlabel('xlabel')
ax.set_ylabel('ylabel')
 
ax.text(3, 8, 'boxed italics text in data coords', style='italic',
    bbox={'facecolor':'red', 'alpha':0.5, 'pad':10})
 
ax.text(2, 6, r'an equation: $E=mc^2$', fontsize=15)
 
ax.text(3, 2, u'unicode: Institut f\374r Festk\366rperphysik')
 
ax.text(0.95, 0.01, 'colored text in axes coords',
    verticalalignment='bottom', horizontalalignment='right',
    transform=ax.transAxes,
    color='green', fontsize=15)
 
 
ax.plot([2], [1], 'o')
 
 
# 注释
ax.annotate('我是注释啦', xy=(2, 1), xytext=(3, 4),color='r',size=15,
      arrowprops=dict(facecolor='g', shrink=0.05))
 
ax.axis([0, 10, 0, 10])

python matplotlib中的subplot函数使用详解

5, 保存显示

plt.savefig("1.png")
plt.savefig("1.png", trainsparent =True)
plt.show()

二、部分函数使用详解:

1, fig.add_subplot(numrows, numcols, fignum) ####三个参数,分别代表子图的行数,列数,图索引号。 eg: ax = fig.add_subplot(2, 3, 1) (or ,ax = fig.add_subplot(231))

2, plt.subplots()使用

x = np.linspace(0, 2*np.pi,400)
y = np.sin(x**2)
fig, ax = plt.subplots()
ax.plot(x, y)
ax.set_title('Simple plot')
 
# Creates two subplots and unpacks the output array immediately 
#fig = plt.figure(figsize=(6,6))
f, (ax1, ax2) = plt.subplots(1, 2, sharey=True)
ax1.plot(x, y)
ax1.set_title('Sharing Y axis')
ax2.scatter(x, y)
 
# Creates four polar axes, and accesses them through the returned array
fig, axes = plt.subplots(2, 2, subplot_kw=dict(polar=True))
axes[0, 0].plot(x, y)
axes[1, 1].scatter(x, y)
 
# Share a X axis with each column of subplots
plt.subplots(2, 2, sharex='col')
 
# Share a Y axis with each row of subplots
plt.subplots(2, 2, sharey='row')
 
# Share both X and Y axes with all subplots
plt.subplots(2, 2, sharex='all', sharey='all')
 
# Note that this is the same as
plt.subplots(2, 2, sharex=True, sharey=True)
 
# Creates figure number 10 with a single subplot
# and clears it if it already exists.
fig, ax=plt.subplots(num=10, clear=True)

3.plt.legend()

plt.legend(loc='String or Number', bbox_to_anchor=(num1, num2))
plt.legend(loc='upper center', bbox_to_anchor (0.6,0.95),ncol=3,fancybox=True,shadow=True)
#bbox_to_anchor被赋予的二元组中,第一个数值用于控制legend的左右移动,值越大越向右边移动,第二个数值用于控制legend的上下移动,值越大,越向上移动

python matplotlib中的subplot函数使用详解

以上这篇python matplotlib中的subplot函数使用详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
动态创建类实例代码
Oct 07 Python
Django实现的自定义访问日志模块示例
Jun 23 Python
Python json模块dumps、loads操作示例
Sep 06 Python
正则给header的冒号两边参数添加单引号(Python请求用)
Aug 09 Python
python爬虫-模拟微博登录功能
Sep 12 Python
python IDLE添加行号显示教程
Apr 25 Python
Python web如何在IIS发布应用过程解析
May 27 Python
使用K.function()调试keras操作
Jun 17 Python
Python pip使用超时问题解决方案
Aug 03 Python
单身狗福利?Python爬取某婚恋网征婚数据
Jun 03 Python
Python+Selenium实现读取网易邮箱验证码
Mar 13 Python
用Python仅20行代码编写一个简单的端口扫描器
Apr 08 Python
Python中的 ansible 动态Inventory 脚本
Jan 19 #Python
Python实现序列化及csv文件读取
Jan 19 #Python
使用python turtle画高达
Jan 19 #Python
ansible动态Inventory主机清单配置遇到的坑
Jan 19 #Python
python实现五子棋游戏(pygame版)
Jan 19 #Python
Python turtle画图库&&画姓名实例
Jan 19 #Python
python3连接mysql获取ansible动态inventory脚本
Jan 19 #Python
You might like
PHP数据库操作Helper类完整实例
2016/05/11 PHP
php7安装mongoDB扩展的方法分析
2017/08/02 PHP
php使用mysqli和pdo扩展,测试对比mysql数据库的执行效率完整示例
2019/05/09 PHP
JavaScript 基础问答三
2008/12/03 Javascript
js对象与打印对象分析比较
2013/04/23 Javascript
HTML Color Picker(js拾色器效果)
2013/08/27 Javascript
Jquery 切换不同图片示例代码
2013/12/05 Javascript
jQuery实现在列表的首行添加数据
2015/05/19 Javascript
jquery 将当前时间转换成yyyymmdd格式的实现方法
2016/06/01 Javascript
Vue.js手风琴菜单组件开发实例
2017/05/16 Javascript
javascript+css3开发打气球小游戏完整代码
2017/11/28 Javascript
通过webpack引入第三方库的方法
2018/07/20 Javascript
JS实现判断图片是否加载完成的方法分析
2018/07/31 Javascript
vue项目打包之后背景样式丢失的解决方案
2019/01/17 Javascript
基于redis的小程序登录实现方法流程分析
2020/05/25 Javascript
[57:31]DOTA2-DPC中国联赛 正赛 SAG vs CDEC BO3 第一场 2月1日
2021/03/11 DOTA
Python如何快速上手? 快速掌握一门新语言的方法
2017/11/14 Python
python获取微信企业号打卡数据并生成windows计划任务
2019/04/30 Python
对django中foreignkey的简单使用详解
2019/07/28 Python
pytorch 实现打印模型的参数值
2019/12/30 Python
Python datetime 格式化 明天,昨天实例
2020/03/02 Python
基于Python爬取fofa网页端数据过程解析
2020/07/13 Python
MIXIT官网:俄罗斯最大的化妆品公司之一
2020/01/25 全球购物
美国名牌手表折扣网站:Jomashop
2020/05/22 全球购物
过程装备与控制工程专业个人的求职信
2013/12/01 职场文书
空乘英文求职信
2014/04/13 职场文书
生物工程专业求职信
2014/09/03 职场文书
乡镇党委书记第三阶段个人整改措施
2014/09/16 职场文书
财务助理岗位职责范本
2014/10/09 职场文书
化验室岗位职责
2015/02/14 职场文书
学生逃课万能检讨书2000字
2015/02/17 职场文书
2015年乡镇平安建设工作总结
2015/05/13 职场文书
活动费用申请报告
2015/05/15 职场文书
vue实现省市区联动 element-china-area-data插件
2022/04/22 Vue.js
python神经网络ResNet50模型
2022/05/06 Python
MySQL 原理与优化之Limit 查询优化
2022/08/14 MySQL