- 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
Adding units to heatmap annotation in Seaborn
To add units to a heatmap annotation in Seaborn, we can take the following steps −
Set the figure size and adjust the padding between and around the subplots.
Create a 5×5 dimension matrix using numpy.
Plot rectangular data as a color-encoded matrix.
Annotate heatmap value with %age unit.
To display the figure, use show() method.
Example
import matplotlib.pyplot as plt import seaborn as sns import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True data = np.random.rand(5, 5) ax = sns.heatmap(data, annot=True, fmt='.1f', square=1, linewidth=1.) for t in ax.texts: t.set_text(t.get_text() + " %") plt.show()
Output
- Related Articles
- How to understand Seaborn's heatmap annotation format?
- How to make custom grid lines in Seaborn heatmap?
- How to create a seaborn correlation heatmap in Python?
- How to create a Triangle Correlation Heatmap in seaborn?
- How to annotate each cell of a heatmap in Seaborn?
- How to hide the colorbar of a Seaborn heatmap?
- Auto adjust font size in Seaborn heatmap using Matplotlib
- How to make a heatmap square in Seaborn FacetGrid using Matplotlib?
- How to animate a Seaborn heatmap or correlation matrix(Matplotlib)?
- Customizing annotation with Seaborn's FacetGrid
- Plotting a heatmap for 3 columns in Python with Seaborn
- How to add text in a heatmap cell annotations using seaborn in Python?
- How to remove X or Y labels from a Seaborn heatmap?
- How to remove the axis tick marks on a Seaborn heatmap?
- Set Max value for color bar on Seaborn heatmap using Matplotlib

Advertisements