Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to set the middle point of a colormap, ie my data goes from -5 to 10, i want zero to be the middle. I think the way to do it is subclassing normalize and using the norm, but i didn't find any example and it is not clear to me, what exactly i have to implement.

share|improve this question
this is called a "diverging" or "bipolar" colormap, where the center point of the map is important and the data goes above and below this point. sandia.gov/~kmorel/documents/ColorMaps – endolith May 31 '12 at 4:20

3 Answers

It's easiest to just use the vmin and vmax arguments to imshow (assuming you're working with image data) rather than subclassing matplotlib.colors.Normalize.

E.g.

import numpy as np
import matplotlib.pyplot as plt

data = np.random.random((10,10))
# Make the data range from about -5 to 10
data = 10 / 0.75 * (data - 0.25)

plt.imshow(data, vmin=-10, vmax=10)
plt.colorbar()

plt.show()

enter image description here

share|improve this answer
1  
Is it possible to have the example updated to a gaussian curve so we can better see the gradation of the color? – Dat Chu Sep 13 '11 at 15:34
I don't like this solution, because it doesn't use the full dynamic range of available colors. Also i would like to a example of normalize to build a symlog-kind of normalization. – tillsten Sep 13 '11 at 15:43
2  
@tillsten - I'm confused, then... You can't use the full dynamic range of the colorbar if you want 0 in the middle, right? You're wanting a non-linear scale then? One scale for values above 0, one for values below? In that case, yeah, you'll need to subclass Normalize. I'll add an example in just a bit (assuming someone else doesn't beat me to it...). – Joe Kington Sep 13 '11 at 15:49
@Joe: You are right, it is not linear (more exactly, two linear parts). Using vmin/vmax, the colorange for the values smaller than -5 is not used (which makes sense in some applications, but not mine.). – tillsten Sep 13 '11 at 16:00
your example should use some kind of smoothly-varying function, not random data, and the high points should be farther from zero than the low points, to show how you moved the center, and you shouldn't use the jet colormap for pretty much anything ever. jwave.vt.edu/~rkriz/Projects/create_color_table/color_07.pdf – endolith May 31 '12 at 4:23
show 1 more comment

Not sure if you are still looking for an answer. For me, trying to subclass Normalize was unsuccessful. So I focused on manually creating a new data set, ticks and tick-labels to get the effect I think you are aiming for.

I found the scale module in matplotlib that has a class used to transform line plots by the 'syslog' rules, so I use that to transform the data. Then I scale the data so that it goes from 0 to 1 (what Normalize usually does), but I scale the positive numbers differently from the negative numbers. This is because your vmax and vmin might not be the same, so .5 -> 1 might cover a larger positive range than .5 -> 0, the negative range does. It was easier for me to create a routine to calculate the tick and label values.

Below is the code and an example figure.

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.mpl as mpl
import matplotlib.scale as scale

NDATA = 50
VMAX=10
VMIN=-5
LINTHRESH=1e-4

def makeTickLables(vmin,vmax,linthresh):
    """
    make two lists, one for the tick positions, and one for the labels
    at those positions. The number and placement of positive labels is 
    different from the negative labels.
    """
    nvpos = int(np.log10(vmax))-int(np.log10(linthresh))
    nvneg = int(np.log10(np.abs(vmin)))-int(np.log10(linthresh))+1
    ticks = []
    labels = []
    lavmin = (np.log10(np.abs(vmin)))
    lvmax = (np.log10(np.abs(vmax)))
    llinthres = int(np.log10(linthresh))
    # f(x) = mx+b
    # f(llinthres) = .5
    # f(lavmin) = 0
    m = .5/float(llinthres-lavmin)
    b = (.5-llinthres*m-lavmin*m)/2
    for itick in range(nvneg):
        labels.append(-1*float(pow(10,itick+llinthres)))
        ticks.append((b+(itick+llinthres)*m))
    # add vmin tick
    labels.append(vmin)
    ticks.append(b+(lavmin)*m)

    # f(x) = mx+b
    # f(llinthres) = .5
    # f(lvmax) = 1
    m = .5/float(lvmax-llinthres)
    b = m*(lvmax-2*llinthres) 
    for itick in range(1,nvpos):
        labels.append(float(pow(10,itick+llinthres)))
        ticks.append((b+(itick+llinthres)*m))
    # add vmax tick
    labels.append(vmax)
    ticks.append(b+(lvmax)*m)

    return ticks,labels


data = (VMAX-VMIN)*np.random.random((NDATA,NDATA))+VMIN

# define a scaler object that can transform to 'symlog'
scaler = scale.SymmetricalLogScale.SymmetricalLogTransform(10,LINTHRESH)
datas = scaler.transform(data)

# scale datas so that 0 is at .5
# so two seperate scales, one for positive and one for negative
data2 = np.where(np.greater(data,0),
                 .75+.25*datas/np.log10(VMAX),
                 .25+.25*(datas)/np.log10(np.abs(VMIN))
                 )

ticks,labels=makeTickLables(VMIN,VMAX,LINTHRESH)

cmap = mpl.cm.jet
fig = plt.figure()
ax = fig.add_subplot(111)
im = ax.imshow(data2,cmap=cmap,vmin=0,vmax=1)
cbar = plt.colorbar(im,ticks=ticks)
cbar.ax.set_yticklabels(labels)

fig.savefig('twoscales.png')

vmax=10,vmin=-5 and linthresh=1e-4

Feel free to adjust the "constants" (eg VMAX) at the top of the script to confirm that it behaves well.

share|improve this answer
Thanks for you suggestion, as seen below, i had success in subclassing. But your code is still very useful for making the ticklabels right. – tillsten Oct 12 '11 at 20:27
up vote 2 down vote accepted

Ok, i was able to subclass Normalize. The code from Yann is still very helpful to make the ticks of the colorbar right, because the automatic don't work very well with this norm. Thanks for anyones help:

from matplotlib.colors import Normalize

class myNorm(Normalize):    
    def __init__(self,linthresh,vmin=None,vmax=None,clip=False):
        Normalize.__init__(self,vmin,vmax,clip)
        self.linthresh=linthresh

    def __call__(self, value, clip=None):
        if clip is None:
            clip = self.clip

        result, is_scalar = self.process_value(value)

        self.autoscale_None(result)
        vmin, vmax = self.vmin, self.vmax
        if vmin > 0:
            raise ValueError("minvalue must be less than 0")
        if vmax < 0:
            raise ValueError("maxvalue must be more than 0")            
        elif vmin == vmax:
            result.fill(0) # Or should it be all masked? Or 0.5?
        else:
            vmin = float(vmin)
            vmax = float(vmax)
            if clip:
                mask = ma.getmask(result)
                result = ma.array(np.clip(result.filled(vmax), vmin, vmax),
                                  mask=mask)
            # ma division is very slow; we can take a shortcut
            resdat = result.data

            resdat[resdat>0] /= vmax
            resdat[resdat<0] /= -vmin
            resdat=resdat/2.+0.5
            result = np.ma.array(resdat, mask=result.mask, copy=False)

        if is_scalar:
            result = result[0]

        return result

    def inverse(self, value):
        if not self.scaled():
            raise ValueError("Not invertible until scaled")
        vmin, vmax = self.vmin, self.vmax

        if cbook.iterable(value):
            val = ma.asarray(value)
            val=2*(val-0.5) 
            val[val>0]*=vmax
            val[val<0]*=-vmin
            return val
        else:
            if val<0.5: 
                return  2*val*(-vmin)
            else:
                return val*vmax
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.