【说站】python中subplot函数怎么画图?
2024-11-22
4
python中subplot函数怎么画图?
说明
1、调用subplot()函数可以创建子图,程序可以在子图上绘制。subplot(nrows、ncols、index、**kwargs)函数的nrows参数指定将数据图区域分成多少行,ncols参数指定将数据图区域分成多少列,index参数指定获得多少区域。
2、subplot()函数还支持直接输入一个三位数的参数,其中第一位数是nrows参数;第二位数是ncols参数;第三位数是index参数。
参数
nrows: subplot的行数
ncols: subplot的列数
sharex :所有subplot应该使用相同的X轴刻度(调节xlim将会影响所有的subplot)
sharey: 所有subplot应该使用相同的Y轴刻度(调节ylim将会影响所有的subplot)
subplot_kw: 用于创建各subplot的关键字字典
**fig_kw: 创建figure时的其他关键字
实例
import numpy as np import matplotlib.pyplot as plt x = np.arange(0, 100) #作图1 plt.subplot(2,2,1) #等效于plt.subplot(221) plt.plot(x, x) #作图2 plt.subplot(2,2,2) plt.plot(x, -x) #作图3 plt.subplot(2,2,3) plt.plot(x, x ** 2) plt.grid(color='r', linestyle='--', linewidth=1,alpha=0.3) #作图4 #plt.subplot(224) #plt.plot(x, np.log(x)) plt.show()
以上就是python中subplot函数画图的方法,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:6小时前赞一波!
相关文章
- 【说站】python中random模块求随机数
- 【说站】python中figure()函数画两张图
- 【说站】python异常时的语句处理
- 【说站】python列表如何传递到线程?
- 【说站】python局部作用域是什么
- 【说站】python中Queue如何通信
- 【说站】python WSGI规范是什么
- 【说站】python中进程池Pool的初始化
- 【说站】python Pool常用函数有哪些
- 【说站】python整数的进制转换
- 【说站】python如何使用send唤醒
- 【说站】python gevent的原理分析
- 【说站】python生成器创建的方法整理
- 【说站】本月编程语言排行:C语言稳居榜首,python持续上升
- 【说站】python密码生成器的使用
- 【说站】python模块如何传入参数
- 【说站】python模块的介绍和导入
- 【说站】招聘月:Python数据分析岗位迎来机遇
- 【说站】python调用函数的注意点
- 【说站】python中try-except-finally语句的使用
文章评论
评论问答