plot bar graph python example
Example 1: matplotlib bar chart
import matplotlib.pyplot as plt
# Create a Simple Bar Plot of Three People's Ages
# Create a List of Labels for x-axis
names = ["Brad", "Bill", "Bob"]
# Create a List of Values (Same Length as Names List)
ages = [9, 5, 10]
# Make the Chart
plt.bar(names, ages)
# Show the Chart
plt.show()
Example 2: bar chart in python
import matplotlib.pyplot as plt; plt.rcdefaults()import numpy as npimport matplotlib.pyplot as pltobjects = ('Python', 'C++', 'Java', 'Perl', 'Scala', 'Lisp')y_pos = np.arange(len(objects))performance = [10,8,6,4,2,1]plt.bar(y_pos, performance, align='center', alpha=0.5)plt.xticks(y_pos, objects)plt.ylabel('Usage')plt.title('Programming language usage')plt.show()