Python Matplotlib Contourf图

时间:2019-04-29 14:49:55

标签: python matplotlib contourf

我对matplotlib和Contourf有一个疑问。

我正在使用matplotlib的最新版本和python3.7。基本上,我必须对要绘制在相同轮廓图上但使用不同颜色图的矩阵进行矩阵处理。一个重要方面是,例如,如果我们有零个矩阵A和矩阵B,它们的形状=(10,10),则矩阵A与零不同的位置就是矩阵B不为零的位置,反之亦然。

换句话说,我想用不同的颜色绘制两个不同的蒙版。

感谢您的时间。

编辑:

我在这里添加示例

import numpy
import matplotlib.pyplot as plt

matrixA=numpy.random.randn(10,10).reshape(100,)
matrixB=numpy.random.randn(10,10).reshape(100,)

mask=numpy.random.uniform(10,10)
mask=mask.reshape(100,)

indexA=numpy.where(mask[mask>0.5])[0]
indexB=numpy.where(mask[mask<=0.5])[0]

matrixA_masked=numpy.zeros(100,)
matrixB_masked=numpy.zeros(100,)
matrixA_masked[indexA]=matrixA[indexA]
matrixB_masked[indexB]=matrixB[indexB]

matrixA_masked=matrixA_masked.reshape(100,100)
matrixB_masked=matrixB_masked.reshape(100,100)

x=numpy.linspace(0,10,1)
X,Y = numpy.meshgrid(x,x)
plt.contourf(X,Y,matrixA_masked,colormap='gray')
plt.contourf(X,Y,matrixB_masked,colormap='winter')
plt.show()

我想要的是能够使用出现在同一图中的不同颜色图。因此,例如在图中,将有一个部分分配给具有轮廓颜色的矩阵A(在发生矩阵B的位置分配为0),并分配给具有不同颜色图的矩阵B。

在其他作品中,contourf图的每个部分都对应一个矩阵。我正在绘制机器学习模型的决策图。

1 个答案:

答案 0 :(得分:1)

我偶然发现了您的代码中的一些错误,因此我创建了自己的数据集。 要在一个绘图上具有两个颜色图,您需要打开一个图并定义轴:

import numpy
import matplotlib.pyplot as plt

matrixA=numpy.linspace(1,20,100)
matrixA[matrixA >= 10] = numpy.nan
matrixA_2 = numpy.reshape(matrixA,[50,2])

matrixB=numpy.linspace(1,20,100)
matrixB[matrixB <= 10] = numpy.nan
matrixB_2 = numpy.reshape(matrixB,[50,2])

fig,ax = plt.subplots()
a = ax.contourf(matrixA_2,cmap='copper',alpha=0.5,zorder=0)
fig.colorbar(a,ax=ax,orientation='vertical')
b=ax.contourf(matrixB_2,cmap='cool',alpha=0.5,zorder=1)
fig.colorbar(b,ax=ax,orientation='horizontal')
plt.show()

enter image description here

您还将看到我更改了alphazorder

我希望这会有所帮助。