Giter Club home page Giter Club logo

bg-mpl-stylesheets's Introduction

BillingeGroup mpl-stylesheets

  • matplotlib can accept a manually defined stylesheet file that is located remotely or locally.

  • To use BillingeGroup stylesheet, please install this package first

    1. You can install from source code in this repo by python setup.py install.

    2. Or you can conda install the package from conda-forge.

  • Then simply run following commands at the begining of you python session whenever you plot.

    >>> import matplotlib.pyplot as plt
    >>> from bg_mpl_stylesheet.bg_mpl_stylesheet import bg_mpl_style
    >>> plt.style.use(bg_mpl_style)
    
  • If you wish to use BillingeGroup stylesheet as the default style of your plots, please follow these steps.

    1. Use following commands to figure out which matplotlib config directory on your system:

      >>> import matplotlib
      >>> config_dir = matplotlib.get_configdir()
      
    2. Copy and paste bg_mpl_stylesheet file to config_dir found at previous step.

  • You could also configure any matplotlib rcParameter dynamically in your python session by

    plt.rcParams['figure.dpi'] = 180
    plt.rcParams['font.size'] = 18
    (... and so on)
    
  • Now you can start writing the plot codes as normal, such as

    fig = plt.figure()
    ax = fig.add_subplot(1,1,1)
    ax.plot(x, y)
    fig.savefig('test.pdf')
    
  • You can also go to the example folder and run plot.py for the testing. The example plot would be like this:

example_plot

  • The full group color cycle is shown in the following along with the color codes:

color_cycle

bg-mpl-stylesheets's People

Contributors

dragonyanglong avatar sbillinge avatar chiahaoliu avatar cj-wright avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.