博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python plt 如何画不同的数据图
阅读量:5102 次
发布时间:2019-06-13

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

参考网址:

https://matplotlib.org/examples/pylab_examples/subplots_demo.html

https://stackoverflow.com/questions/24793241/2-subplots-sharing-y-axis-no-space-between-with-single-color-bar


 

 

sharing y axis

import numpyimport matplotlib.pyplot as pltfrom mpl_toolkits.axes_grid1 import make_axes_locatable#Random datadata = numpy.random.random((10, 10))fig = plt.figure()ax1 = fig.add_subplot(1,2,1, aspect = "equal")ax2 = fig.add_subplot(1,2,2, aspect = "equal", sharey = ax1)  #Share y-axes with subplot 1#Set y-ticks of subplot 2 invisibleplt.setp(ax2.get_yticklabels(), visible=False)#Plot dataim1 = ax1.pcolormesh(data)im2 = ax2.pcolormesh(data)#Define locations of colorbars for both subplot 1 and 2divider1 = make_axes_locatable(ax1)cax1 = divider1.append_axes("right", size="5%", pad=0.05)divider2 = make_axes_locatable(ax2)cax2 = divider2.append_axes("right", size="5%", pad=0.05)#Create and remove the colorbar for the first subplotcbar1 = fig.colorbar(im1, cax = cax1)fig.delaxes(fig.axes[2])#Create second colorbarcbar2 = fig.colorbar(im2, cax = cax2)#Adjust the widths between the subplotsplt.subplots_adjust(wspace = -.059)plt.show()

 

转载于:https://www.cnblogs.com/hwy89289709/p/6943336.html

你可能感兴趣的文章
Python入门-函数
查看>>
[HDU5727]Necklace(二分图最大匹配,枚举)
查看>>
距离公式汇总以及Python实现
查看>>
设计模式之装饰者模式
查看>>
一道不知道哪里来的容斥题
查看>>
Blender Python UV 学习
查看>>
window添加右键菜单
查看>>
入手腾龙SP AF90mm MACRO
查看>>
python学习4 常用内置模块
查看>>
Window7上搭建symfony开发环境(PEAR)
查看>>
ResolveUrl的用法
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
一些方便系统诊断的bash函数
查看>>
<转>关于MFC的多线程类 CSemaphore,CMutex,CCriticalSection,CEvent
查看>>
jquery中ajax返回值无法传递到上层函数
查看>>
css3之transform-origin
查看>>
[转]JavaScript快速检测浏览器对CSS3特性的支持
查看>>
Master选举原理
查看>>