Skip to content

Latest commit

 

History

History
68 lines (45 loc) · 1.97 KB

README.rst

File metadata and controls

68 lines (45 loc) · 1.97 KB

COLORMAP documentation

https://pypip.in/d/colormap/badge.png https://secure.travis-ci.org/cokelaer/colormap.png https://coveralls.io/repos/cokelaer/colormap/badge.png?branch=master https://landscape.io/github/cokelaer/colormap/master/landscape.png https://badge.waffle.io/cokelaer/colormap.png?label=ready&title=Ready
version:Python 2.7, 3.3, 3.4
contributions:Please join https://github.com/cokelaer/colormap
issues:Please use https://github.com/cokelaer/colormap/issues
notebook:Please see https://github.com/cokelaer/colormap/tree/master/notebooks

What is it ?

colormap package provides simple utilities to convert colors between RGB, HEX, HLS, HUV and a class to easily build colormaps for matplotlib.

Installation

pip install colormap

Example

  • Create your own colormap from red to green colors with intermediate color as whitish (diverging map from red to green):

    c = Colormap()
    mycmap = c.cmap( {'red':[1,1,0], 'green':[0,1,.39], 'blue':[0,1,0]})
    cmap = c.test_colormap(mycmap)
    
  • Even simpler if the colormap is linear:

    c = Colormap()
    mycmap = c.cmap_linear('red', 'white', 'green')
    cmap = c.test_colormap(mycmap)
    
  • check out the available colormaps:

    c = Colormap()
    c.plot_colormap('diverging')
    

http://pythonhosted.org//colormap/_images/colormaps.png

See online documentation for details: http://pythonhosted.org//colormap/