Python之matplotlib共享坐标轴的实现X或Y坐标轴的解决办法
内容摘要
这篇文章主要为大家详细介绍了Python之matplotlib共享坐标轴的实现X或Y坐标轴的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随php教程的雯雯
感兴趣的小伙伴,下面一起跟随php教程的雯雯
文章正文
这篇文章主要为大家详细介绍了Python之matplotlib共享坐标轴的实现X或Y坐标轴的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随php教程的雯雯来看看吧!
前言
1. 概述
共享坐标轴就是几幅子图之间共享x轴或y轴,这一部分主要了解如何在利用matplotlib制图时共享坐标轴。
代码如下:
1 2 3 | <code> pyplot.subplots(nrows = 1,ncols = 1,sharex = False,sharey = False, squeeze = True,subplot_kw =无,gridspec_kw =无,** fig_kw )</code> |
matplotlib共享坐标轴的实现(X或Y坐标轴)
参数:nrows:行数ncols:列数sharex:是否共享X轴坐标sharey:是否共享Y轴坐标返回值:Figure,Axes对象数组
一、sharex和sharey 代码示例:
代码如下:
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | <code> '' ' 1. 程序目的: 基于sharex和sharey实现 (1) 共享x轴 (2) 共享y轴 (3) 同时共享x轴和y轴 (4) 调整子图之间的距离 2. 版本 2.1 山东青岛 2021年5月18日 Version 1 '' ' # 1. 相关模块导入 import numpy as np import matplotlib.pyplot as plt plt.rcParams[ 'font.sans-serif' ] = [ 'SimHei' ] # 正常显示中文字体 plt.rcParams[ 'axes.unicode_minus' ] = False # 正常显示负号 # 2. 创建制图数据 x = np.linspace(-5,5,100) y_1 = np.sin(x) y_2 = np. cos (x) y_3 = y_2*2 # 3. 绘图 # 3.1 共享X轴 figure,(ax1,ax2,ax3) = plt.subplots(3,1, figsize=(5,6), dpi=600, # 共享x轴 sharex=True) ax1.plot(x,y_1,c= 'blue' ,linestyle= ':' ) ax2.plot(x,y_2,c= 'orange' ,linestyle= ':' ) ax3.plot(x,y_3,c= 'r' ,linestyle= ':' ) # 调整子图形之间的纵向距离 figure.subplots_adjust(hspace=0.1) ax1.set_title( '以下三图共享了X轴' ) # 其实更合理的添加图名时figure.subtitle() # 3.2 共享Y轴 # 创建新的绘图figure和axes对象 figure,(ax1,ax2,ax3) = plt.subplots(1,3, figsize=(6,2), dpi=600, # 共享y轴 sharey=True) figure.suptitle( '以下三图共享了Y轴' ) ax1.plot(x,y_1,c= 'blue' ,linestyle= ':' ) ax2.plot(x,y_2,c= 'orange' ,linestyle= ':' ) ax3.plot(x,y_3,c= 'r' ,linestyle= ':' ) # 调整子图形之间的横向距离 figure.subplots_adjust(wspace=0.1) # 3.3 同时共享x轴和y轴 # 创建新的绘图figure和axes对象 figure,(ax1,ax2,ax3) = plt.subplots(1,3, figsize=(6,2), dpi=600, # 共享x轴 sharex=True, # 共享y轴 sharey=True) x4 = np.linspace(-10,10,100) y_4 = np. cos (x4)*2 figure.suptitle( '以下三图同时共享了X轴和Y轴' ) ax1.plot(x,y_1,c= 'blue' ,linestyle= ':' ) ax2.plot(x,y_2,c= 'orange' ,linestyle= ':' ) ax3.plot(x4,y_4,c= 'r' ,linestyle= ':' ) # 调整子图形之间的横向距离 figure.subplots_adjust(wspace=0.1) plt.show()</code> |
matplotlib共享坐标轴的实现(X或Y坐标轴)
实例2
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <code> import matplotlib.pyplot as plt import numpy as np plt.rcParams[ 'font.sans-serif' ]=[ 'SimHei' ] plt.rcParams[ 'axes.unicode_minus' ]=False x=np.linspace(0,2*np.pi,500) y=np.sin(x)*np. exp (-x) fig,ax=plt.subplots(nrows=1,ncols=2,sharey=True) ax1=ax[0] ax1.plot(x,y) ax1.set_title( "折线图" ) ax2=ax[1] ax2.scatter(x,y) ax2.set_title( "散点图" ) plt.suptitle( "一张画布两个子图,并共享y坐标" ) #删除空隙wspace为两图的水平距离,hspace为两图的垂直距离 fig.subplots_adjust(wspace=0) plt.show()</code> |
matplotlib共享坐标轴的实现(X或Y坐标轴)
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 | <code> import matplotlib.pyplot as plt import numpy as np plt.rcParams[ 'font.sans-serif' ]=[ 'SimHei' ] plt.rcParams[ 'axes.unicode_minus' ]=False x=np.linspace(0,2*np.pi,500) y=np.sin(x)*np. exp (-x) fig,ax=plt.subplots(nrows=1,ncols=1) ax.plot(x,y) ax.set_title( "折线图" ) ax.scatter(x,y[::-1]) plt.suptitle( "共享单一绘图区域的坐标轴" ) plt.show()</code> |
matplotlib共享坐标轴的实现(X或Y坐标轴)
到此这篇关于matplotlib共享坐标轴的实现(X或Y坐标轴)的文章就介绍到这了,更多相关matplotlib共享坐标轴内容请搜索php教程以前的文章或继续浏览下面的相关文章希望大家以后多多支持php教程!
注:关于Python之matplotlib共享坐标轴的实现X或Y坐标轴的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释