ย้อนกลับ colormap ใน matplotlib


254

ฉันต้องการทราบวิธีย้อนกลับลำดับสีของ colormap ที่กำหนดเพื่อใช้กับ plot_surface

คำตอบ:


466

ตารางสีมาตรฐานทั้งหมดยังมีเวอร์ชันที่ตรงกันข้าม พวกเขามีชื่อเดียวกันกับที่_rยึดติดกับท้ายที่สุด ( เอกสารที่นี่ )


สิ่งนี้ไม่ทำงานกับ "amfhot": "ValueError: ไม่รู้จัก colormap colormap" ฉันคิดว่า "hot_r" จะต้องพอเพียง
Shockburner

ในทำนองเดียวกัน "ValueError: Colormap red_r ไม่เป็นที่รู้จัก"
Alex Willison

19

ใน matplotlib แผนที่สีไม่ได้เป็นรายการ colormap.colorsแต่ก็มีรายชื่อของสีที่เป็น และโมดูลmatplotlib.colorsยังมีฟังก์ชั่นListedColormap()ในการสร้างแผนที่สีจากรายการ ดังนั้นคุณสามารถย้อนกลับแผนที่สีใด ๆ โดยทำ

colormap_r = ListedColormap(colormap.colors[::-1])

7
+1 อย่างไรก็ตามการทำเช่นนี้จะไม่กลับรายการตารางสีใด ๆ มีเพียงListedColormaps (นั่นคือไม่ต่อเนื่องแทนที่จะถูกสอดแทรก) ที่มีcolorsคุณลักษณะ การกลับตัวLinearSegmentedColormapsนั้นซับซ้อนกว่าเล็กน้อย (คุณต้องกลับรายการทุกรายการใน_segmentdatadict)
Joe Kington

3
เกี่ยวกับการย้อนกลับLinearSegmentedColormapsฉันเพิ่งทำสิ่งนี้เพื่อ colourmaps บางอย่าง นี่คือ IPython Notebook ของมัน
kwinkunks

@kwinkunks ฉันคิดว่าฟังก์ชั่นในโน้ตบุ๊กของคุณไม่ถูกต้องให้ดูคำตอบด้านล่าง
Mattijn

14

การแก้ปัญหาค่อนข้างตรงไปตรงมา สมมติว่าคุณต้องการใช้โครงร่างสี "ฤดูใบไม้ร่วง" รุ่นมาตรฐาน:

cmap = matplotlib.cm.autumn

หากต้องการย้อนกลับสเปกตรัมสี colormap ให้ใช้ get_cmap () ฟังก์ชั่นและผนวก '_r' ต่อท้ายชื่อ colormap ดังนี้:

cmap_reversed = matplotlib.cm.get_cmap('autumn_r')

คุณสามารถให้ลิงค์เอกสารที่คุณได้รับจาก.
Xitcod13

สิ่งนี้อาจแตกในภายหลัง ... matplotlib.org/3.1.1/gallery/color/colormap_reference.htmlแต่ฉันแน่ใจว่าทุกคนที่สนใจจะสามารถค้นหาสิ่งนี้ได้โดยการค้นหาต่อไป
Jlanger

13

เนื่องจาก 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')

ป้อนคำอธิบายรูปภาพที่นี่


ตัวอย่างนี้ไม่สมบูรณ์ในแง่ที่ว่าเซกเมนต์ดาต้าไม่ได้อยู่ในรายการดังนั้นจึงไม่จำเป็นต้องย้อนกลับได้ (เช่น Rainbow colormap มาตรฐาน) ฉันคิดว่าในหลักการทั้งหมด LinearSegmentedColormaps ควรเป็นแบบพลิกกลับได้โดยใช้ฟังก์ชั่นแลมบ์ดาเช่นเดียวกับที่อยู่ใน colormap รุ้ง?
ต่างประเทศ

@ user3445587 ฉันเพิ่มตัวอย่างอีกบางส่วน แต่ฉันคิดว่ามันใช้งานได้ดีกับ colormap มาตรฐานสีรุ้ง
Mattijn

เนื่องจากมันยาวเกินไปฉันจึงเพิ่มคำตอบใหม่ซึ่งควรใช้ได้กับ LinearSegmentData ทุกประเภท ปัญหาคือสำหรับรุ้ง _segmentdata ถูกนำไปใช้ต่างกัน ดังนั้นรหัสของคุณ - อย่างน้อยในเครื่องของฉัน - ไม่สามารถทำงานร่วมกับ Rainbow colormap
ต่างประเทศ

12

ในฐานะของ Matplotlib 2.0 มีreversed()วิธีการListedColormapและLinearSegmentedColorMapวัตถุดังนั้นคุณสามารถทำได้

cmap_reversed = cmap.reversed()

นี่คือเอกสารประกอบ


1

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)) 

1

ไม่มีวิธีในตัว (ยัง) ของการย้อนกลับ 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 ใด ๆ


โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.