如何增加pyplots等高线图的颜色范围

时间:2020-03-04 13:25:48

标签: python matplotlib scipy contour

我正在尝试将误差函数绘制为轮廓。我正在使用的近似值有两个变量,每个变量都会产生平均误差: wireframe of function

我现在正在尝试将其绘制为轮廓:

def contour(pa, pm, data):

    print("Plotting Contour")
    plt.xlabel("alpha")
    plt.ylabel("m")

    plt.contourf(pa, pm, data)
    plt.colorbar()

    plt.show()

这将产生此轮廓图: Contour Graph

不幸的是,我在山谷中失去了很多细节。我如何增加色彩范围,或者是否可以选择将所有颜色都超过特定阈值黄色?

1 个答案:

答案 0 :(得分:0)

使用 plt.pcolor vmin vmax 。 在documentation中进行阅读-可以轻松地对其进行解释。