Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to put in BOLD the title in a seaborn factorplot

How can I the title in BOLD? By now I have just changed the font size. I tried with font weight, but it does not exist.

    sns.plt.title('I AM A TITLE').set_fontsize('18')
like image 577
Aizzaac Avatar asked Jan 05 '23 04:01

Aizzaac


1 Answers

Here is the answer:

    sns.plt.title('I AM A TITLE', weight='bold').set_fontsize('18')

enter image description here

like image 99
Aizzaac Avatar answered Jan 13 '23 14:01

Aizzaac