

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How can I add textures to my bars and wedges in Matplotlib?
To add textures to bars and wedges we can take the following steps −
Set the figure size and adjust the padding between and around the subplots.
Create a new figure or activate an existing figure using figure() method.
Add an axes to the figure as part of a subplot arrangement.
Make a list of hatches. Bars could be filled with some hatches.
Create number bars as equivalent to number of hatches.
Use bar() method to plot the bars with different hatch.
To display the figure, use show() method.
Example
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() ax = fig.add_subplot(111) textures = ["//", "*", "o", "d", "."] for i in range(len(textures)): ax.bar(i, np.random.randint(1, 5), color="green", edgecolor="black", alpha=0.3, hatch=textures[i]) plt.show()
Output
- Related Questions & Answers
- How can I add debugging code to my JavaScript?
- Adding textures to graphs using Matplotlib
- How do I plot hatched bars using Pandas and Matplotlib?
- How to add percentages on top of bars in Seaborn using Matplotlib?
- How can I dynamically update my Matplotlib figure as the data file changes?
- How can I curb my shopping addiction?
- How can I increase my monthly savings?
- How can I get my invention patented?
- How can I improve my spoken English?
- How can I plot a histogram such that the heights of the bars sum to 1 in matplotlib?
- How can I remove dandruff from my hair?
- How can I make my custom objects Parcelable?
- How can I make my custom objects Serializable?
- How can I make my layout scroll vertically?
- How do I get all the bars in a Matplotlib bar chart?
Advertisements