how to plot bar plot in matplotlib code example
Example 1: how to plot a bar using matplotlib
import matplotlib.pyplot as plt
data = {'C':20, 'C++':15, 'Java':30,
'Python':35}
courses = list(data.keys())
values = list(data.values())
fig = plt.figure(figsize = (5, 5))
plt.bar(courses, values, color ='green',
width = 0.4)
plt.xlabel("Courses offered")
plt.ylabel("No. of students enrolled")
plt.title("Students enrolled in different courses")
plt.show()
Example 2: matplotlib bar
import matplotlib.pyplot as plt
%matplotlib inline
fig, ax = plt.subplots()
ax.bar(x, y)
ax.set_title("Title")
ax.set_xlabel("X_Label")
ax.set_ylabel("Y_Label")