Comment augmenter la taille du graphique dans Jupyter
from matplotlib import pyplot as plt
f, ax = plt.subplots(1, 1, figsize = (15, 10))
calmap.yearplot(events, year=2015, ax=ax)
Puzzled Pony