Reverse colormap in matplotlib
我想知道如何简单地反转给定颜色图的颜色顺序,以便将其与plot_surface一起使用。
标准色图也都具有相反的版本。它们具有相同的名称,并在末尾加上
在matplotlib中,颜色映射不是列表,但是包含其颜色列表为
1 | colormap_r = ListedColormap(colormap.colors[::-1]) |
解决方案非常简单。假设您要使用"秋天"颜色图方案。标准版:
1 | cmap = matplotlib.cm.autumn |
要反转颜色图色谱,请使用get_cmap()函数,并将" _r"附加到颜色图标题中,如下所示:
1 | cmap_reversed = matplotlib.cm.get_cmap('autumn_r') |
由于
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | import matplotlib.pyplot as plt import matplotlib as mpl def reverse_colourmap(cmap, name = 'my_cmap_r'): """ In: cmap, name Out: my_cmap_r Explanation: t[0] goes from 0 to 1 row i: x y0 y1 -> t[0] t[1] t[2] / / row i+1: x y0 y1 -> t[n] t[1] t[2] so the inverse should do the same: row i+1: x y1 y0 -> 1-t[0] t[2] t[1] / / row i: x y1 y0 -> 1-t[n] t[2] t[1] """ reverse = [] k = [] for key in cmap._segmentdata: k.append(key) channel = cmap._segmentdata[key] data = [] for t in channel: data.append((1-t[0],t[2],t[1])) reverse.append(sorted(data)) LinearL = dict(zip(k,reverse)) my_cmap_r = mpl.colors.LinearSegmentedColormap(name, LinearL) return my_cmap_r |
看到它的工作原理:
1 2 3 4 5 6 7 8 9 10 11 | my_cmap <matplotlib.colors.LinearSegmentedColormap at 0xd5a0518> my_cmap_r = reverse_colourmap(my_cmap) fig = plt.figure(figsize=(8, 2)) ax1 = fig.add_axes([0.05, 0.80, 0.9, 0.15]) ax2 = fig.add_axes([0.05, 0.475, 0.9, 0.15]) norm = mpl.colors.Normalize(vmin=0, vmax=1) cb1 = mpl.colorbar.ColorbarBase(ax1, cmap = my_cmap, norm=norm,orientation='horizontal') cb2 = mpl.colorbar.ColorbarBase(ax2, cmap = my_cmap_r, norm=norm, orientation='horizontal') |
编辑
我没有收到user3445587的评论。在彩虹色图上工作正常:
1 2 3 4 5 6 7 8 9 | cmap = mpl.cm.jet cmap_r = reverse_colourmap(cmap) fig = plt.figure(figsize=(8, 2)) ax1 = fig.add_axes([0.05, 0.80, 0.9, 0.15]) ax2 = fig.add_axes([0.05, 0.475, 0.9, 0.15]) norm = mpl.colors.Normalize(vmin=0, vmax=1) cb1 = mpl.colorbar.ColorbarBase(ax1, cmap = cmap, norm=norm,orientation='horizontal') cb2 = mpl.colorbar.ColorbarBase(ax2, cmap = cmap_r, norm=norm, orientation='horizontal') |
但它对于自定义声明的颜色图特别有用,因为对于自定义声明的颜色图没有默认的
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | cdict1 = {'red': ((0.0, 0.0, 0.0), (0.5, 0.0, 0.1), (1.0, 1.0, 1.0)), 'green': ((0.0, 0.0, 0.0), (1.0, 0.0, 0.0)), 'blue': ((0.0, 0.0, 1.0), (0.5, 0.1, 0.0), (1.0, 0.0, 0.0)) } blue_red1 = mpl.colors.LinearSegmentedColormap('BlueRed1', cdict1) blue_red1_r = reverse_colourmap(blue_red1) fig = plt.figure(figsize=(8, 2)) ax1 = fig.add_axes([0.05, 0.80, 0.9, 0.15]) ax2 = fig.add_axes([0.05, 0.475, 0.9, 0.15]) norm = mpl.colors.Normalize(vmin=0, vmax=1) cb1 = mpl.colorbar.ColorbarBase(ax1, cmap = blue_red1, norm=norm,orientation='horizontal') cb2 = mpl.colorbar.ColorbarBase(ax2, cmap = blue_red1_r, norm=norm, orientation='horizontal') |
从Matplotlib 2.0开始,为
这是文档。
还没有内置的反转任意颜色图的方法,但是一个简单的解决方案是实际上不修改颜色条,而是创建一个反转的Normalize对象:
1 2 3 4 5 | from matplotlib.colors import Normalize class InvertedNormalize(Normalize): def __call__(self, *args, **kwargs): return 1 - super(InvertedNormalize, self).__call__(*args, **kwargs) |
然后您可以通过以下方法将其与
1 2 | inverted_norm = InvertedNormalize(vmin=10, vmax=100) ax.plot_surface(..., cmap=<your colormap>, norm=inverted_norm) |
这将与任何Matplotlib颜色图一起使用。
有两种类型的LinearSegmentedColormaps。在某些情况下,_segmentdata是明确给出的,例如,对于jet:
1 2 | >>> cm.jet._segmentdata {'blue': ((0.0, 0.5, 0.5), (0.11, 1, 1), (0.34, 1, 1), (0.65, 0, 0), (1, 0, 0)), 'red': ((0.0, 0, 0), (0.35, 0, 0), (0.66, 1, 1), (0.89, 1, 1), (1, 0.5, 0.5)), 'green': ((0.0, 0, 0), (0.125, 0, 0), (0.375, 1, 1), (0.64, 1, 1), (0.91, 0, 0), (1, 0, 0))} |
对于Rainbow,_segmentdata给出如下:
1 2 | >>> cm.rainbow._segmentdata {'blue': <function <lambda> at 0x7fac32ac2b70>, 'red': <function <lambda> at 0x7fac32ac7840>, 'green': <function <lambda> at 0x7fac32ac2d08>} |
我们可以在matplotlib的源代码中找到这些函数,这些函数以
1 2 3 4 5 | _rainbow_data = { 'red': gfunc[33], # 33: lambda x: np.abs(2 * x - 0.5), 'green': gfunc[13], # 13: lambda x: np.sin(x * np.pi), 'blue': gfunc[10], # 10: lambda x: np.cos(x * np.pi / 2) } |
您想要的一切都已经在matplotlib中完成,只需调用cm.revcmap,即可反转两种类型的segmentdata,因此
1 | cm.revcmap(cm.rainbow._segmentdata) |
应该做的工作-您可以简单地从中创建一个新的LinearSegmentData。在revcmap中,基于功能的SegmentData的逆转是通过
1 2 3 4 | def _reverser(f): def freversed(x): return f(1 - x) return freversed |
而其他列表则照常颠倒
1 | valnew = [(1.0 - x, y1, y0) for x, y0, y1 in reversed(val)] |
因此,实际上,您想要的全部是
1 2 | def reverse_colourmap(cmap, name = 'my_cmap_r'): return mpl.colors.LinearSegmentedColormap(name, cm.revcmap(cmap._segmentdata)) |