- 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 to show the title for the diagram of Seaborn pairplot() or PridGrid()? (Matplotlib)
To show the title for the diagram for Seaborn pairplot(), we can use pp.fig.suptitle() method.
Steps
- Set the figure size and adjust the padding between and around the subplots.
- Create a Pandas dataframe, i.e., a two-dimensional, size-mutable, potentially heterogeneous tabular data.
- Plot pairwise relationships in a dataset.
- Add a centered title to the figure.
- 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((5, 5)), columns=["a", "b", "c", "d", "e"]) pp = sns.pairplot(df, height=3.5) pp.fig.suptitle("My Pairplot") plt.show()
Output
- Related Articles
- How to adjust transparency (alpha) in Seaborn pairplot using Matplotlib?
- How to set the range of Y-axis for a Seaborn boxplot using Matplotlib?
- How to add a title on Seaborn lmplot?
- How to animate a Seaborn heatmap or correlation matrix(Matplotlib)?
- How to adjust the space between Matplotlib/Seaborn subplots for multi-plot layouts?
- How to plot a non-square Seaborn jointplot or JointGrid? (Matplotlib)
- How to put the title at the bottom of a figure in Matplotlib?
- How to update the plot title with Matplotlib using animation?
- How to change the figuresize using Seaborn factorplot in Matplotlib?
- How to put a title for a curved line in Python Matplotlib?
- How to move the legend to outside of a Seaborn scatterplot in Matplotlib?
- How to remove or hide X-axis labels from a Seaborn / Matplotlib plot?
- How to show different colors for points and line in a Seaborn regplot?
- How to increase the font size of the legend in my Seaborn plot using Matplotlib?
- How do I adjust (offset) the colorbar title in Matplotlib?

Advertisements