Answers for "add title to relplot seaborn"

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

Python Answers by Framework

Browse Popular Code Answers by Language