- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- 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 Articles
- How can I add debugging code to my JavaScript?
- How do I plot hatched bars using Pandas and Matplotlib?
- Adding textures to graphs using 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 plot a histogram such that the heights of the bars sum to 1 in matplotlib?
- How to add and remove error bars in Excel?
- How do I get all the bars in a Matplotlib bar chart?
- How to avoid overlapping error bars in matplotlib?
- How can I increase my monthly savings?
- How can I curb my shopping addiction?
- How can I improve my spoken English?
- How can I get my invention patented?
- How do I add more members to my ENUM - type column in MySQL?
- How can I count true and false values in my PHP array?

Advertisements