creating a bar plot bar 7c creating a bar chart

Solutions on MaxInterview for creating a bar plot bar 7c creating a bar chart by the best coders in the world

showing results for - "creating a bar plot bar 7c creating a bar chart"
Sara
09 Jan 2017
1import matplotlib.pyplot as plt
2
3working_days = ['Non-Working Day', 'Working Day']
4casual_avg = [1371, 607]
5
6plt.bar(working_days, casual_avg)
7plt.show()