Python Matplotlib属性 cmap

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'))
Python Matplotlib属性 cmap_第1张图片
第二个加_r表示颜色反过来 
在画等高线等时经常用到

你可能感兴趣的:(PyQt)