Création d'une barre de barre de barre | Créer un graphique à barres
import matplotlib.pyplot as plt
working_days = ['Non-Working Day', 'Working Day']
casual_avg = [1371, 607]
plt.bar(working_days, casual_avg)
plt.show()
rudythealchemist