Color Map manipulation

When it comes to the visualization the brain map, it is wise to attach an appropriate color map. The choice of the color map depends on the type of the data and the message to convey to the readers.

Pre-defined Color Maps

For example, the gradient color map was designed to highlight the very high and very low values, which corresponds to the information by functional gradient.

>>> from neurocat import color
>>> color.cmap.gradient()
../_images/gradient.svg

Besides, neurocat made some commonly used color map that don’t exit in matplotlib. They were all stored in neurocat.color.cmap.

Myeline map:

>>> color.cmap.myelin()
../_images/myeline.svg

``psych_no_none``(from connectome workbench):

>>> color.cmap.psych_no_none()
../_images/psych_no_none.svg

Hot map but without black

>>> color.cmap.hot_no_black()
../_images/hot_no_black.svg