你如何告诉interp2d忽略nan值?
我有一个表面x和y,有一些任意值z。
x = np.array([[9.19632, 9.62141, 10.0829, np.isnan, np.isnan],
[9.21164, 9.64347, 10.1392, 10.5698, np.isnan],
[9.22175, 9.65439, 10.1423, 10.6301, 11.0323],
[9.21632, 9.67060, 10.1474, 10.6230, 11.0818]])
y = np.array([[11.5466,11.6485,11.7619, np.isnan, np.isnan],
[12.4771, 12.5460, 12.5453, 12.7142, np.isnan],
[13.5578, 13.5581, 13.5505, 13.5309, 13.6081],
[14.5653, 14.5504, 14.5036, 14.5145, 14.5060]])
z = np.array([[0.466113, 0.0484404, -0.385355, np.isnan, np.isnan],
[0.366125, -0.160165, -0.548668, -0.888301,np.isnan],
[-0.0970777, -0.346734, -0.826576, -1.08412, -1.33129],
[-0.259981, -0.586938, -1.03477, -1.32384, -1.61500]])
我已经能够使用蒙面数组生成上面的颜色网格,但是当我尝试使用2d插值创建更精细的网格时,我失败了。下面是我到目前为止,请注意我将nan值设置为零以获得这一点,所以很明显它会弄乱'正确'插值。相反,我想忽略它们并将参数空间留空。
f = interp.interp2d(x,y,z, kind='linear')
xnew = np.arange(9,11.5, 0.01)
ynew = np.arange(9,15, 0.01)
znew = f(xnew, ynew)
levels = np.linspace(zmin, zmax, 15)
plt.ylabel('Y', size=15)
plt.xlabel('X', size=15)
cmap = plt.cm.jet_r
cmap.set_bad('white',0.1) # set nan to white
cs = plt.contourf(xnew, ynew, znew, levels=levels, cmap=cmap)
cbar = plt.colorbar(cs)
cbar.set_label('Z', rotation=90, fontsize=15) # gas fraction
plt.show()
我想简单地创建一个平滑的颜色图,其中x和y绑定的区域根据z着色。
答案 0 :(得分:3)
我不知道为什么interp2d存在不规则间隔数据的问题,我建议使用griddata,你可以将输入数据平移到ravel
的向量中,然后消除NaN,并将其用作输入griddata,你会得到类似的东西
代码与您的代码差别不大
import numpy as np
import matplotlib.pyplot as plt
from scipy.interpolate import griddata
x = np.array([[9.19632, 9.62141, 10.0829,np.isnan,np.isnan],
[9.21164, 9.64347, 10.1392, 10.5698,np.isnan],
[9.22175, 9.65439, 10.1423, 10.6301, 11.0323],
[9.21632, 9.67060, 10.1474, 10.6230, 11.0818]])
y = np.array([[11.5466,11.6485,11.7619,np.isnan,np.isnan],
[12.4771, 12.5460, 12.5453, 12.7142,np.isnan],
[13.5578, 13.5581, 13.5505, 13.5309, 13.6081],
[14.5653, 14.5504, 14.5036, 14.5145, 14.5060]])
z = np.array([[0.466113, 0.0484404, -0.385355,np.isnan,np.isnan],
[0.366125, -0.160165, -0.548668, -0.888301,np.isnan],
[-0.0970777, -0.346734, -0.826576, -1.08412, -1.33129],
[-0.259981, -0.586938, -1.03477, -1.32384, -1.61500]])
x=x.ravel() #Flat input into 1d vector
x=list(x[x!=np.isnan]) #eliminate any NaN
y=y.ravel()
y=list(y[y!=np.isnan])
z=z.ravel()
z=list(z[z!=np.isnan])
xnew = np.arange(9,11.5, 0.01)
ynew = np.arange(9,15, 0.01)
znew = griddata((x, y), z, (xnew[None,:], ynew[:,None]), method='linear')
levels = np.linspace(min(z), max(z), 15)
plt.ylabel('Y', size=15)
plt.xlabel('X', size=15)
cmap = plt.cm.jet_r
cs = plt.contourf(xnew, ynew, znew, levels=levels, cmap=cmap)
cbar = plt.colorbar(cs)
cbar.set_label('Z', rotation=90, fontsize=15) # gas fraction
plt.show()
如果您必须推断数据(请查看下面的评论),您可以使用SmoothBivariateSpline
并使用样条曲线的顺序,我不推荐它,我会告诉您原因。
代码更接近你原来的代码。
from scipy.interpolate import SmoothBivariateSpline
x=x.ravel()
x=(x[x!=np.isnan])
y=y.ravel()
y=(y[y!=np.isnan])
z=z.ravel()
z=(z[z!=np.isnan])
xnew = np.arange(9,11.5, 0.01)
ynew = np.arange(10.5,15, 0.01)
f = SmoothBivariateSpline(x,y,z,kx=1,ky=1)
znew=np.transpose(f(xnew, ynew))
当kx = 1且ky = 1 f = SmoothBivariateSpline(x,y,z,kx=1,ky=1)
时,你得到
当kx = 2且ky = 2时,你得到:
当kx = 3且ky = 3时,你得到:
我更改了3张图片的级别,因此更容易看到。但是检查比例,你的采样区域外的值会非常快,所以如果你必须推断,那就勤奋地做吧