gpt4 book ai didi

python - 如何调整我的 imshow 大小?

转载 作者:太空狗 更新时间:2023-10-30 00:01:50 27 4
gpt4 key购买 nike

我使用以下代码生成了一个二维强度矩阵:

H, x_e, y_e = np.histogram2d(test_y, test_x, bins=(y_e, x_e))

x_e 和 y_e 的值为:

x_e
array([ 0.05 , 0.0530303 , 0.05606061, 0.05909091, 0.06212121,
0.06515152, 0.06818182, 0.07121212, 0.07424242, 0.07727273,
0.08030303, 0.08333333, 0.08636364, 0.08939394, 0.09242424,
0.09545455, 0.09848485, 0.10151515, 0.10454545, 0.10757576,
0.11060606, 0.11363636, 0.11666667, 0.11969697, 0.12272727,
0.12575758, 0.12878788, 0.13181818, 0.13484848, 0.13787879,
0.14090909, 0.14393939, 0.1469697 , 0.15 , 0.1530303 ,
0.15606061, 0.15909091, 0.16212121, 0.16515152, 0.16818182,
0.17121212, 0.17424242, 0.17727273, 0.18030303, 0.18333333,
0.18636364, 0.18939394, 0.19242424, 0.19545455, 0.19848485,
0.20151515, 0.20454545, 0.20757576, 0.21060606, 0.21363636,
0.21666667, 0.21969697, 0.22272727, 0.22575758, 0.22878788,
0.23181818, 0.23484848, 0.23787879, 0.24090909, 0.24393939,
0.2469697 , 0.25 , 0.2530303 , 0.25606061, 0.25909091,
0.26212121, 0.26515152, 0.26818182, 0.27121212, 0.27424242,
0.27727273, 0.28030303, 0.28333333, 0.28636364, 0.28939394,
0.29242424, 0.29545455, 0.29848485, 0.30151515, 0.30454545,
0.30757576, 0.31060606, 0.31363636, 0.31666667, 0.31969697,
0.32272727, 0.32575758, 0.32878788, 0.33181818, 0.33484848,
0.33787879, 0.34090909, 0.34393939, 0.3469697 , 0.35 ])
y_e
array([ 0., 1., 2., 3., 4., 5., 6., 7., 8., 9.])

我似乎无法用这段代码控制我绘制的输出的形状:

fig = plt.figure(figsize=(10, 10))
ax = fig.add_subplot(111)
ax.set_title(feature_of_interest)
im = plt.imshow(H, interpolation='nearest', origin='low',
extent=[y_e[0], y_e[-1], x_e[0], x_e[-1]])

这给了我一个非常压扁的输出,我看不到任何东西:

enter image description here

如何调整参数以获得更好的纵横比?

这是我到目前为止尝试过的:

  • 尝试使用 extent 参数。这改变了形状,但不是以可预测的方式。这也使轴标签不正确。
  • 更改 figsize 参数。这似乎没有任何效果。

最佳答案

您可以设置 axes 的宽高比directly .这与图形大小无关。这是一个例子:

import numpy as np
from matplotlib import pyplot as plt

data = np.random.rand(5, 100)

fig = plt.figure()
ax = fig.add_subplot(111)

ax.imshow(data, interpolation='nearest')
ax.set_aspect(5)

plt.show()

enter image description here

关于python - 如何调整我的 imshow 大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39274002/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com