Scientific colormaps for making accessible, informative and 'cmashing' plots
Project description
CMasher: Scientific colormaps for making accessible, informative and cmashing plots
The CMasher package provides a collection of scientific colormaps to be used by different Python packages and projects, mainly in combination with matplotlib, showcased in the online documentation. The colormaps in CMasher are all designed to be perceptually uniform sequential using the viscm package; most of them are color-vision deficiency friendly; and they cover a wide range of different color combinations to accommodate for most applications. It offers several alternatives to commonly used colormaps, like chroma and rainforest for jet; sunburst for hot; neutral for binary; and fusion and redshift for coolwarm. If you cannot find your ideal colormap, then please open an issue, provide the colors and/or style you want, and I will try to create one to your liking! Let’s get rid of all bad colormaps in the world together!
If you use CMasher for your work, then please star the repo, such that I can keep track of how many users it has and more easily raise awareness of bad colormaps.
Colormap overview
Below is an overview of all the colormaps that are currently in CMasher (made with the cmr.create_cmap_overview() function). For more information, see the online documentation.
Installation & Use
How to install
CMasher can be easily installed by either cloning the repository and installing it manually:
$ git clone https://github.com/1313e/CMasher $ cd CMasher $ pip install .
or by installing it directly from PyPI with:
$ pip install cmasher
CMasher can now be imported as a package with import cmasher as cmr.
Example use
The colormaps shown above can be accessed by simply importing CMasher. This makes them available in the cmasher module, in addition to registering them in matplotlib’s cm module (with added 'cmr.' prefix to avoid name clashes). So, for example, if one were to use the rainforest colormap, this could be done with:
# Import CMasher to register colormaps
import cmasher as cmr
# Import packages for plotting
import matplotlib.pyplot as plt
import numpy as np
# Access rainforest colormap through CMasher or MPL
cmap = cmr.rainforest # CMasher
cmap = plt.get_cmap('cmr.rainforest') # MPL
# Generate some data to plot
x = np.random.rand(100)
y = np.random.rand(100)
z = x**2+y**2
# Make scatter plot of data with colormap
plt.scatter(x, y, c=z, cmap=cmap, s=300)
plt.show()
Accessing the colormaps in other packages than matplotlib would require reading in the text files in the cmasher/colormaps directory, which contain the normalized RGB values (multiply by 255 for regular 8-bit values) of every colormap, and registering them in the package manually. For those that are interested, the viscm source files that were used for creating the colormaps can also be found in the cmasher/colormaps directory in the repo (the source files are not provided with the package distribution).
Using custom colormaps
CMasher allows for custom colormaps to be imported with the cmr.import_cmaps function (which is executed automatically on the cmasher/colormaps directory when CMasher is imported). This function takes the path to a colormap file named cm_<cmap_name> (or the path to a directory containing such files); creates a matplotlib Colormap object using the data in the file; and registers it in matplotlib with the name 'cmr.<cmap_name>' (it will also be available in CMasher as cmr.cm.<cmap_name>). A colormap file can either be a JSCM-file as created by viscm or a text file that contains the normalized RGB values of the colormap (see the text files in the cmasher/colormaps directory for the structure of such files).
Note that colormaps imported this way cannot be accessed through CMasher using cmr.<cmap_name>, unlike CMasher’s own colormaps, but solely using cmr.cm.<cmap_name> (access through matplotlib is unchanged). This is to keep official and unofficial colormaps separated in CMasher.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file cmasher-1.2.2.tar.gz
.
File metadata
- Download URL: cmasher-1.2.2.tar.gz
- Upload date:
- Size: 249.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a64850794be82d758790f7dfbc583758e6c581488460f4d448254216d5adb584 |
|
MD5 | 822d8a0e6956916f647a89ac1f64b061 |
|
BLAKE2b-256 | e8cab0eb2616313e3fc9126b35c17715c4e6c3185215d101cd830ee786ddd2c5 |
File details
Details for the file cmasher-1.2.2-py3-none-any.whl
.
File metadata
- Download URL: cmasher-1.2.2-py3-none-any.whl
- Upload date:
- Size: 254.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6b6888c003695b44a83dc1b0dca987c98889689c9b3c144d416300339a6e7dc |
|
MD5 | 9aabfbff0fb02889201b0b7d837cf636 |
|
BLAKE2b-256 | 14c526851de89cf0eb4693b349b9cded26873f6e26ab274126676170c3c5d7a0 |
File details
Details for the file cmasher-1.2.2-py2-none-any.whl
.
File metadata
- Download URL: cmasher-1.2.2-py2-none-any.whl
- Upload date:
- Size: 254.3 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f194b3fc3ccd7d052b5d1cdc63268867471b6e6e33cd4426f57190b97500f275 |
|
MD5 | 109c80a90989cc7550ecd503f95905ea |
|
BLAKE2b-256 | eb3690dc4b06a086dc4b96fc2339dbb529fc30bff97df846faaefc768e3f83f9 |