williamgilpin / degas

Plotting utilities for matplotlib

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

degas

A minimal 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)

About

Plotting utilities for matplotlib


Languages

Language:Python 100.0%