ฉันต้องการทราบวิธีย้อนกลับลำดับสีของ colormap ที่กำหนดเพื่อใช้กับ plot_surface
ฉันต้องการทราบวิธีย้อนกลับลำดับสีของ colormap ที่กำหนดเพื่อใช้กับ plot_surface
คำตอบ:
ตารางสีมาตรฐานทั้งหมดยังมีเวอร์ชันที่ตรงกันข้าม พวกเขามีชื่อเดียวกันกับที่_r
ยึดติดกับท้ายที่สุด ( เอกสารที่นี่ )
ใน matplotlib แผนที่สีไม่ได้เป็นรายการ colormap.colors
แต่ก็มีรายชื่อของสีที่เป็น และโมดูลmatplotlib.colors
ยังมีฟังก์ชั่นListedColormap()
ในการสร้างแผนที่สีจากรายการ ดังนั้นคุณสามารถย้อนกลับแผนที่สีใด ๆ โดยทำ
colormap_r = ListedColormap(colormap.colors[::-1])
ListedColormap
s (นั่นคือไม่ต่อเนื่องแทนที่จะถูกสอดแทรก) ที่มีcolors
คุณลักษณะ การกลับตัวLinearSegmentedColormaps
นั้นซับซ้อนกว่าเล็กน้อย (คุณต้องกลับรายการทุกรายการใน_segmentdata
dict)
LinearSegmentedColormaps
ฉันเพิ่งทำสิ่งนี้เพื่อ colourmaps บางอย่าง นี่คือ IPython Notebook ของมัน
การแก้ปัญหาค่อนข้างตรงไปตรงมา สมมติว่าคุณต้องการใช้โครงร่างสี "ฤดูใบไม้ร่วง" รุ่นมาตรฐาน:
cmap = matplotlib.cm.autumn
หากต้องการย้อนกลับสเปกตรัมสี colormap ให้ใช้ get_cmap () ฟังก์ชั่นและผนวก '_r' ต่อท้ายชื่อ colormap ดังนี้:
cmap_reversed = matplotlib.cm.get_cmap('autumn_r')
เนื่องจาก a 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')
แก้ไข
ฉันไม่ได้รับความคิดเห็นของผู้ใช้ 3445587 มันทำงานได้ดีบน colormap รุ้ง:
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')
แต่จะใช้งานได้ดีเป็นพิเศษสำหรับ colormaps ที่ประกาศแบบกำหนดเองเนื่องจากไม่มีค่าเริ่มต้น_r
สำหรับ colormaps ที่ประกาศแบบกำหนดเอง ตัวอย่างต่อไปนี้นำมาจาก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 มีreversed()
วิธีการListedColormap
และLinearSegmentedColorMap
วัตถุดังนั้นคุณสามารถทำได้
cmap_reversed = cmap.reversed()
นี่คือเอกสารประกอบ
LinearSegmentedColormaps มีสองประเภท ในบาง _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))}
สำหรับรุ้ง _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))
ไม่มีวิธีในตัว (ยัง) ของการย้อนกลับ colormaps ตามอำเภอใจ แต่วิธีแก้ปัญหาอย่างง่าย ๆ อย่างหนึ่งคือการไม่ปรับเปลี่ยนแถบสี แต่เพื่อสร้างวัตถุกลับคืนปกติ:
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 colormap ใด ๆ