Reputation: 3318
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
Reputation: 3318
Here is the answer:
sns.plt.title('I AM A TITLE', weight='bold').set_fontsize('18')
Upvotes: 11