Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

creating a bar plot bar | creating a bar chart

import matplotlib.pyplot as plt

working_days = ['Non-Working Day', 'Working Day']
casual_avg = [1371, 607]

plt.bar(working_days, casual_avg)
plt.show()
Source by app.dataquest.io #
 
PREVIOUS NEXT
Tagged: #creating #bar #plot #bar #creating #bar #chart
ADD COMMENT
Topic
Name
1+3 =