# | Likes | Tech tags | Title | Creator | Created date |
---|---|---|---|---|---|
1 | 0 |
Matplotlib
|
2022-12-17 02:41
|
Renders the following pie chart:
import matplotlib.pyplot as plt
plt.pie([3, 7, 5], labels=["a", "b", "xy"])
plt.show()
functions | |
matplotlib.pyplot.pie |
matplotlib.org |
matplotlib.pyplot.show |
matplotlib.org |
Plot a categorical bar graph containing at least 3 labeled slices. Include a picture of the graph in the specification.