MBI-Div-B / mbistyles

matplotlib MBI plotting style
MIT License
0 stars 0 forks source link

MBI Matplotlib styles

This is a Python module to provide an MBI-like matplotlib plotting style inspired by the design of the MBI webpage: https://mbi-berlin.de

A minimal code example would look like this:

import matplotlib.pyplot as plt
import mbistyles

with plt.style.context('mbistyles.base'):
    plt.figure()
    plt.plot(...)
    plt.show()

More examples can be found in the examples/examples.ipynb notebook.

Installation

You can use pip to directly install from the repository:

$ pip install git+https://github.com/MBI-Div-B/mbistyles.git

License

The project is licensed under the MIT license.