以下python代码创建包含正态分布值的矩阵的热图
import numpy as np
from matplotlib import pylab as plt
np.random.seed(123) #make sure we all have same data
m = np.random.randn(200).reshape(10, 20)
plt.imshow(m, cmap='RdYlGn', interpolation='nearest')
plt.colorbar()
这是此代码的输出
我想通过“淡出”接近零的值来增强此图像的对比度。 我可以通过使用原始数据的双曲线缩放来轻松完成此操作,如下所示:
def disigmoidScaling(values, steepnessFactor=1, ref=None):
''' Sigmoid scaling in which values around a reference point are flattened
arround a reference point
Scaled value y is calculated as
y = sign(v - d)(1 - exp(-((x - d)/s)**2)))
where v is the original value, d is the referenc point and s is the
steepness factor
'''
if ref is None:
mn = np.min(values)
mx = np.max(values)
ref = mn + (mx - mn) / 2.0
sgn = np.sign(values - ref)
term1 = ((values - ref)/steepnessFactor) ** 2
term2 = np.exp(- term1)
term3 = 1.0 - term2
return sgn * term3
plt.imshow(disigmoidScaling(m, 4), cmap='RdYlGn', interpolation='nearest')
plt.colorbar()
这是输出。
我对结果感到满意,除了在这个版本中原版的事实 价值已经兑换成比例的。
有没有办法将值非线性映射到colormap?
答案 0 :(得分:4)
色彩映射包含在区间[0,1]上映射的红色,绿色和蓝色值的字典。 Linear Segmented Colormap类文档提供了示例
cdict = {'red': [(0.0, 0.0, 0.0),
(0.5, 1.0, 1.0),
(1.0, 1.0, 1.0)],
'green': [(0.0, 0.0, 0.0),
(0.25, 0.0, 0.0),
(0.75, 1.0, 1.0),
(1.0, 1.0, 1.0)],
'blue': [(0.0, 0.0, 0.0),
(0.5, 0.0, 0.0),
(1.0, 1.0, 1.0)]}
“表中给定颜色的每一行都是x,y0,y1元组的序列。在每个序列中,x必须从0到1单调递增。对于任何输入值z,落在x [i]和x之间[i + 1],给定颜色的输出值将在y1 [i]和y0 [i + 1]之间进行线性插值:“
RdYlGn
色图具有11 x值,每种颜色从0到1.0,步长为0.1。您可以通过调用
cdict
值
plt.cm.RdYlGn._segmentdata
然后,您可以将x值更改为您想要的任何步骤(只要它们单调增加,范围从0到1),并通过调用新matplotlib.colors.LinearSegmentedColormap
上的cdict
获取新的色彩映射表。 Matplotlib Cookbook中有几个很好的例子。