Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 409 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 409 Bytes

Python WaffleChart

Simple WaffleChart made with Python, Matplotlib and Numpy.

Usage:

from chart import WaffleChart
import numpy as np

chart = WaffleChart(
        x=['First', 'Second, 'Third'], 
        y=np.array([1000, 3000, 5000]), 
        title='Waffle Chart'
        )