/degas

Plotting utilities for matplotlib

Primary LanguagePython

degas

A collection of plotting utilities and helper functions for matplotlib.

Installation and requirements

Dependencies

  • matplotlib
  • numpy

Install via pip

pip install git+https://github.com/williamgilpin/degas

Example usage

import numpy as np
from degas.degas import plot_err
   
x = np.linspace(0, 1, 100)
y = x**3
err = .05 * np.random.random(len(x))

plot_err(y, err, x=x)