gpt4 book ai didi

python - 调整网格 xy 比例等值线图 matplotlib

转载 作者:太空宇宙 更新时间:2023-11-03 16:25:00 25 4
gpt4 key购买 nike

我正在尝试设置等高线图,但该图最终看起来像这样:

fig1

我认为这是因为 y 轴大约有 10 到 80 个单位,而 x 只有 4 到 9 个单位,并且网格是方形的,因此每个单位在 x 和 y 轴上的缩放比例相同。如何更改 x 轴的缩放比例以使其成为可用的图像?

import numpy as np
import matplotlib.pyplot as plt
import time as time
from scipy.interpolate import griddata

x = np.array([3.98, 3.98, 3.99, 3.98, 6.02, 6.05, 6.03, 6.04, 10.01, 10.07, 10.09, 10.1])
y = np.array([79.5, 40, 20.07, 10.04, 79.67, 40.08, 20.23, 10.01, 79.42, 39.63, 20.14, 10.11])
z = np.array([38.82697111, 34.61715402, 22.46052757, 13.51888155, 48.52466738, 42.1140194, 28.37788811, 16.48901657, 55.40461783, 46.88792485, 33.66091083, 20.9200696])

extent = (min(x), max(x), min(y), max(y))
xs,ys = np.mgrid[extent[0]:extent[1]:30j, extent[2]:extent[3]:30j]
resampled = griddata((x, y), z, (xs, ys))
plt.figure(figsize=(8,8))
plt.imshow(resampled.T, extent=(min(x), max(x), max(y), min(y)),interpolation='bicubic')
plt.contour(resampled.T, extent=(min(x), max(x), max(y), min(y)),interpolation='bicubic',origin='upper')
plt.hold(True)
plt.scatter(x,y,c=z)
plt.gca().invert_yaxis()
plt.colorbar()
plt.show()

最佳答案

只需手动设置 aspect 关键字即可:

plt.imshow(resampled.T, extent=(min(x), max(x), max(y), min(y)),interpolation='bicubic', aspect=0.1)

或者使用auto选项:

plt.imshow(resampled.T, extent=(min(x), max(x), max(y), min(y)),interpolation='bicubic', aspect='auto')

另一种选择是使用pcolormesh()

关于python - 调整网格 xy 比例等值线图 matplotlib,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38070067/

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