# | Likes | Tech tags | Title | Creator | Created date |
---|---|---|---|---|---|
1 | 0 |
Matplotlib
|
2022-08-13 00:25
|
Plots the following bar graph:
import matplotlib.pyplot as plt
plt.bar(['a', 'b', 'xy'], [3, 7, 5])
plt.show()
functions | |
matplotlib.pyplot.bar |
matplotlib.org |
matplotlib.pyplot.show |
matplotlib.org |
Plot a categorical bar graph containing at least 3 labeled bars. Include a picture of the graph in the specification.