Matplotlib Bar Chart: Display textures to bars and wedges
Matplotlib Bar Chart: Exercise-17 with Solution
Write a Python program to add textures (black and white) to bars and wedges.
Sample Solution:
Python Code:
import matplotlib.pyplot as plt
fig = plt.figure()
patterns = [ "|" , "\\" , "/" , "+" , "-", ".", "*","x", "o", "O" ]
ax = fig.add_subplot(111)
for i in range(len(patterns)):
ax.bar(i, 3, color='white', edgecolor='black', hatch=patterns[i])
plt.show()
Sample Output:
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to create stack bar plot and add label to each section.
Next: Matplotlib Pie Chart Exercises
What is the difficulty level of this exercise?
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/graphics/matplotlib/barchart/matplotlib-barchart-exercise-17.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics