matplotlib的cmap

Posted 笨鸟居士的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib的cmap相关的知识,希望对你有一定的参考价值。

今天又看到了这样的代码:

 

plt.imshow(X_train[0], cmap=plt.get_cmap(\'PuBuGn_r\'))

#plt.imshow(X_train[0], cmap=plt.get_cmap(\'PuBuGn\'))

 

然后发现 get_cmap 经常看到,但是不懂,查了一下,原来后面的就是个名称,然后加 _r 表示反过来。

而名字的列表可以查这里:

 

https://matplotlib.org/users/colormaps.html

这个页面也可以:

https://matplotlib.org/examples/color/colormaps_reference.html

 

比如这里:

 

以上是关于matplotlib的cmap的主要内容,如果未能解决你的问题,请参考以下文章

Matplotlib 基本概念

matplotlib绘图入门详解

matplotlib库的五个优点和缺点

Matplotlib 教程

为何学习matplotlib-老鱼学matplotlib

安装matplotlib?