Plot_surfaceで使用するために、特定のカラーマップの色の順序を単純に逆にする方法を知りたいです。
標準のカラーマップもすべてバージョンが逆になっています。それらは、_r
が最後に付けられた同じ名前を持っています。 ( ドキュメントはこちら )
Matplotlibでは、カラーマップはリストではありませんが、colormap.colors
として色のリストが含まれています。モジュールmatplotlib.colors
は、リストからカラーマップを生成する関数ListedColormap()
を提供します。そのため、次のようにしてカラーマップを反転できます
colormap_r = ListedColormap(colormap.colors[::-1])
LinearSegmentedColormaps
は赤、緑、青の辞書に基づいているため、各項目を逆にする必要があります。
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
動作することを確認してください。
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のコメントが表示されません。 Rainbowカラーマップでは正常に機能します。
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')
ただし、カスタム宣言されたカラーマップにはデフォルトの_r
が存在しないため、カスタム宣言されたカラーマップでは特にうまく機能します。 http://matplotlib.org/examples/pylab_examples/custom_cmap.html からの例を以下に示します。
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の時点で、ListedColormap
およびLinearSegmentedColorMap
オブジェクト用のreversed()
メソッドがあります。
cmap_reversed = cmap.reversed()
ここ はドキュメントです。
ソリューションは非常に簡単です。 「秋」のカラーマップスキームを使用するとします。標準バージョン:
cmap = matplotlib.cm.autumn
カラーマップのカラースペクトルを反転するには、get_cmap()関数を使用して、次のようにカラーマップタイトルに「_r」を追加します。
cmap_reversed = matplotlib.cm.get_cmap('autumn_r')
LinearSegmentedColormapsには2つのタイプがあります。一部の場合、_segmentdataは明示的に指定されます(例:jet):
>>> 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は次のように指定されます。
>>> cm.Rainbow._segmentdata
{'blue': <function <lambda> at 0x7fac32ac2b70>, 'red': <function <lambda> at 0x7fac32ac7840>, 'green': <function <lambda> at 0x7fac32ac2d08>}
関数は、matplotlibのソースで見つけることができます。
_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を呼び出すだけで、両方のタイプのセグメントデータが反転します。
cm.revcmap(cm.Rainbow._segmentdata)
仕事をする必要があります-それから新しいLinearSegmentDataを簡単に作成できます。 revcmapでは、関数ベースのSegmentDataの反転は次のように行われます
def _reverser(f):
def freversed(x):
return f(1 - x)
return freversed
他のリストは通常のように逆になります
valnew = [(1.0 - x, y1, y0) for x, y0, y1 in reversed(val)]
実際にあなたが望むのは
def reverse_colourmap(cmap, name = 'my_cmap_r'):
return mpl.colors.LinearSegmentedColormap(name, cm.revcmap(cmap._segmentdata))
任意のカラーマップを反転する組み込みの方法(まだ)はありませんが、1つの簡単な解決策は、実際にカラーバーを変更せずに、反転するNormalizeオブジェクトを作成することです:
from matplotlib.colors import Normalize
class InvertedNormalize(Normalize):
def __call__(self, *args, **kwargs):
return 1 - super(InvertedNormalize, self).__call__(*args, **kwargs)
その後、これをplot_surface
および他のMatplotlibプロット関数で使用できます。
inverted_norm = InvertedNormalize(vmin=10, vmax=100)
ax.plot_surface(..., cmap=<your colormap>, norm=inverted_norm)
これは、どのMatplotlibカラーマップでも動作します。