黑暗,逆轉調色板我創建一個包含使用順序調色板像這樣幾個地塊的人物:創建於Seaborn
import matplotlib.pyplot as plt
import seaborn as sns
import math
figure = plt.figure(1)
x = range(1, 200)
n_plots = 10
with sns.color_palette('Blues_d', n_colors=n_plots):
for offset in range(n_plots):
plt.plot(x, [offset + math.sin(float(i)/10) for i in range(len(x))])
figure.show()
不過,我想扭轉調色板。 The tutorial指出我可以將'_r'
添加到調色板名稱中以反轉它,並且'_d'
使其變爲「黑色」。但我似乎沒有能夠一起做到這些:'_r_d'
,'_d_r'
,'_rd'
和'_dr'
都產生錯誤。我如何創建一個黑暗的,顛倒的調色板?
調色板只是列表,因此您可以始終使用'reversed()'函數。 – mwaskom