Aizzaac
Aizzaac

Reputation: 3318

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')

Upvotes: 6

Views: 20452

Answers (1)

Aizzaac
Aizzaac

Reputation: 3318

Here is the answer:

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

enter image description here

Upvotes: 11

Related Questions