Skip to content

jackwelty/civis-mpl-style

 
 

Civis Style for Matplotlib

This package contains a Civis matplotlib theme.

Installation

First, you'll need to install the package with setup.py or pip:

Bash installation:

python setup.py install

Pip installation:

pip install git+ssh://[email protected]/civisanalytics/civis-mpl-style.git

Next, run the following on the command line to put the Civis style in the matplotlib configuration directory (typically ~/.matplotlib/stylelib/).

install-civis-style

Usage

Using the matplotlib style.

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0, 100)
y = np.sqrt(x) + np.random.RandomState(42).rand(len(x))

with plt.style.context('civis'):
    fig, ax = plt.subplots()
    ax.plot(x, y, marker='o')
    plt.show()

See examples.ipynb for more examples. Make sure to install seaborn before running the notebook.

About

Civis style for matplotlib.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Jupyter Notebook 94.6%
  • Python 5.4%