Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to plotting bar on matplotlib

import matplotlib.pyplot as plt 

data = [5., 25., 50., 20.]
plt.bar(range(len(data)),data)
plt.show()

// to set the thickness of a bar, we can set 'width'
// plt.bar(range(len(data)), data, width = 1.)
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #plotting #bar #matplotlib
ADD COMMENT
Topic
Name
2+5 =