cmap即colormaps
获取图谱使用plt.get_cmap(‘xxx’)
其值有很多,如官网:https://matplotlib.org/users/colormaps.html
或https://matplotlib.org/examples/color/colormaps_reference.html
如:
plt.contourf(X,Y,Z,6,cmap=plt.get_cmap('YlOrBr'))
plt.contourf(X,Y,Z,6,cmap=plt.get_cmap('YlOrBr_r'))
第二个加_r表示颜色反过来
在画等高线等时经常用到,参考:https://blog.csdn.net/mr_cat123/article/details/80677525