- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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 to display percentage above a bar chart in Matplotlib?
To display percentage above a bar chart in Matplotlib, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Create x and y data points; initialize a variable, width.
- Create a figure and a set of subplots using subplots() method.
- Add bars with x and y data points.
- Iterate bars patches; put text over the bars using text() method.
- To display the figure, use show() method.
Example
from matplotlib import pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = [1, 2, 3, 4, 5] y = [3, 4, 2, 1, 3] width = 0.35 fig, ax = plt.subplots() pps = ax.bar(x, y, width, align='center') for p in pps: height = p.get_height() ax.text(x=p.get_x() + p.get_width() / 2, y=height+.10, s="{}%".format(height), ha='center') plt.show()
Output
- Related Articles
- How to display stacked bar chart using matplotlib in Python?
- How can I display text over columns in a bar chart in Matplotlib?
- How to Create a Diverging Stacked Bar Chart in Matplotlib?
- How to plot a Bar Chart with multiple labels in Matplotlib?
- How to change Bar Chart values to percentages in Matplotlib?
- How to plot a bar chart for a list in Python matplotlib?
- Horizontal stacked bar chart in Matplotlib
- How to create a Matplotlib bar chart with a threshold line?
- How to remove gaps between bars in Matplotlib bar chart?
- How to determine the order of bars in a matplotlib bar chart?
- How to sort bars in increasing order in a bar chart in matplotlib?
- How to increase the thickness of error line in a Matplotlib bar chart?
- Adding value labels on a matplotlib bar chart
- How do I get all the bars in a Matplotlib bar chart?
- How to create a stacked bar chart for my DataFrame using Seaborn in Matplotlib?

Advertisements