我正在绘制一个数据矩阵。一些矩阵的元素是NaN(对应于没有解的存在的参数组合)。我想用阴影区域在等高线图中指出这个区域。关于如何实现这个的任何想法?
答案 0 :(得分:9)
contourf
和contour
方法不会绘制数组被屏蔽的任何内容(请参阅here)!因此,如果您想要绘制阴影的NaN元素区域,则只需将阴影的背景定义为阴影。
见这个例子:
import matplotlib.pyplot as plt
import matplotlib.patches as patches
import numpy as np
fig = plt.figure()
ax = fig.add_subplot(111)
# generate some data:
x,y = np.meshgrid(np.linspace(0,1),np.linspace(0,1))
z = np.ma.masked_array(x**2-y**2,mask=y>-x+1)
# plot your masked array
ax.contourf(z)
# get data you will need to create a "background patch" to your plot
xmin, xmax = ax.get_xlim()
ymin, ymax = ax.get_ylim()
xy = (xmin,ymin)
width = xmax - xmin
height = ymax - ymin
# create the patch and place it in the back of countourf (zorder!)
p = patches.Rectangle(xy, width, height, hatch='/', fill=None, zorder=-10)
ax.add_patch(p)
plt.show()
你会得到这个数字: