为了账号安全,请及时绑定邮箱和手机立即绑定

Matplotlib,当图大小bi时matshow与gridspec不对齐

Matplotlib,当图大小bi时matshow与gridspec不对齐

繁花不似锦 2022-10-18 17:10:49
我尝试使用 gridspec 将多种类型的图一起绘制。我将它与 Jupyter Notebook 一起使用,我意识到当图形宽度大于单元格宽度时。matshow 缩小了,不再与其他人对齐。例如,当 figsize 的宽度小于单元格宽度时,一切正常。.import matplotlib.pyplot as pltimport numpy as npimport matplotlib.gridspec as grdduration = 1data1 = np.sin(2*np.pi*np.linspace(0, duration, 10000))data2 = np.random.random((100,12))fig = plt.figure(figsize=[15, 5], constrained_layout=True)grid = grd.GridSpec(2, 2, figure=fig, height_ratios=[1, 1], width_ratios=[40, 1])ax = plt.subplot(grid[0])ax.plot(data1)ax = plt.subplot(grid[2])im = ax.matshow(data2.T, cmap=plt.get_cmap('inferno'), origin='lower')ax = plt.subplot(grid[3])cb = plt.colorbar(im, cax=ax)然后当宽度大于单元格时。.fig = plt.figure(figsize=[20, 5], constrained_layout=True)grid = grd.GridSpec(2, 2, figure=fig, height_ratios=[1, 1], width_ratios=[40, 1])ax = plt.subplot(grid[0])ax.plot(data1)ax = plt.subplot(grid[2])im = ax.matshow(data2.T, cmap=plt.get_cmap('inferno'), origin='lower')ax = plt.subplot(grid[3])cb = plt.colorbar(im, cax=ax)是什么导致 matshow() 缩小,我该如何解决?我在 Python 3.7 和 Matplotlib 3.1.3 上
查看完整描述

1 回答

?
慕妹3146593

TA贡献1820条经验 获得超9个赞

constrained_layout 的全部要点之一是颜色条的处理更加优雅。即你不需要width_ratios=[40, 1]破解。


import matplotlib.pyplot as plt

import numpy as np


fig, ax = plt.subplots(2, 1, constrained_layout=True)

pc = ax[0].matshow(np.random.rand(20, 20), aspect='auto')

fig.colorbar(pc, ax=ax[0])

ax[1].plot(np.random.rand(20))

plt.show()

//img1.sycdn.imooc.com//634e6de00001264917131274.jpg

查看完整回答
反对 回复 2022-10-18
  • 1 回答
  • 0 关注
  • 123 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信