matplotlib-plt.coutourf-将轮廓扩展到边界点

时间:2018-10-30 11:08:58

标签: matplotlib jupyter-lab

我正在使用以下代码制作下面链接中所示的图:

plt.subplot(426)
plt.rcParams['figure.figsize'] = [15,20]
plt.contourf(X,Y,z6,[1.0,1.1,1.2,1.3,1.4,1.5,1.6,1.7,1.8,1.9,2],cmap='rainbow')
plt.title('Grid Spacing [m]'); plt.xlabel('x axis'); plt.ylabel('y axis')
plt.plot(coord_x,coord_y,'rx'); plt.colorbar(extend='both', ticks=[1.0,1.1,1.2,1.3,1.4,1.5,1.6,1.7,1.8,1.9,2]) 
plt.plot(point_x,point_y,'k.')

countour plot example

有什么方法可以将轮廓扩展到图像右侧的边界点? 所有这些点的值都对应下限(1.0)。

在此先感谢您的帮助! 问候。

0 个答案:

没有答案