Answers for "seaborn displot title"

0

seaborn pairplot set title

g = sns.pairplot(df)
g.fig.suptitle("Your plot title")
Posted by: Guest on May-31-2021
0

add title to relplot seaborn

g = sns.relplot(x="total_bill", y="tip", hue="day", data=df)
g.fig.suptitle('Col1 x Col2', fontsize=16)
g.fig.subplots_adjust(top=0.9);
Posted by: Guest on September-14-2021

Browse Popular Code Answers by Language