3.10 Waffle Chart
Installation
pip install pywaffleExample
# This is randomly made up!
data = {'CDU': 45,'SPD': 34,'Die Linke': 10,'Die Grünen': 7, 'others': 4}import matplotlib.pyplot as plt
from pywaffle import Wafflefig = plt.figure(figsize = (14,6),
FigureClass=Waffle,
rows = 5,
values = data,
colors = ('#EC2272','yellow','#5ac9ff','#76ecbe','#fd5f00'),
title ={'label': 'Politische Parteien in Deutschland','loc':'left'},
labels = ["{0}({1}%)".format(k,v) for k,v in data.items()],
legend = {'loc': 'lower left', 'bbox_to_anchor': (0, -0.4), 'fontsize': 14, 'ncol': len(data)},
starting_location = 'NW')




Last updated