

- 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
Plotting a heatmap for 3 columns in Python with Seaborn
To plot a heatmap for 3 columns in Python with Seaborn, we can take the following steps −
Set the figure size and adjust the padding between and around the subplots.
Create a dataframe, df, with 3 columns.
Plot the rectangular data as a color-encoded matrix.
To display the figure, use show() method.
Example
import seaborn as sns import pandas as pd import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True df = pd.DataFrame(np.random.random((3, 3)), columns=["a", "b", "c"]) sns.heatmap(df, cbar=False) plt.show()
Output
- Related Questions & Answers
- Plotting graph using seaborn in python.
- Adding units to heatmap annotation in Seaborn
- Set Max value for color bar on Seaborn heatmap using Matplotlib
- How to hide the colorbar of a Seaborn heatmap?
- Plotting only the upper/lower triangle of a heatmap in Matplotlib
- How to annotate each cell of a heatmap in Seaborn?
- Plotting with seaborn using the matplotlib object-oriented interface
- How to animate a Seaborn heatmap or correlation matrix(Matplotlib)?
- How to make a heatmap square in Seaborn FacetGrid using Matplotlib?
- Auto adjust font size in Seaborn heatmap using Matplotlib
- How to make custom grid lines in Seaborn heatmap?
- How to remove X or Y labels from a Seaborn heatmap?
- How to remove the axis tick marks on a Seaborn heatmap?
- How to understand Seaborn's heatmap annotation format?
- Plotting error bars from a dataframe using Seaborn FacetGrid (Matplotlib)
Advertisements