near_me
Linear Algebra
keyboard_arrow_down 54 guides
chevron_leftSeaborn
check_circle
Mark as learned thumb_up
1
thumb_down
1
chat_bubble_outline
0
Comment auto_stories Bi-column layout
settings
Setting plot background in Seaborn
schedule Aug 12, 2023
Last updated local_offer
Tags Python
tocTable of Contents
expand_more Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!
Start your free 7-days trial now!
Basic Solution
To set the plot background in Seaborn:
import seaborn as snssns.set(rc={'axes.facecolor':'yellow', 'figure.facecolor':'red'})fig, ax = plt.subplots()
This gives us the following plot:
Using Hex and RGB
To specify colors using HEX and RGB:
import seaborn as sns# #0000FF is bluesns.set(rc={'axes.facecolor':'#0000FF', 'figure.facecolor':(1.0,0.47,0.42,1)})fig, ax = plt.subplots()
Note that the RGB is scaled to a floating value from 0 to 1.
This gives us the following:
Setting transparent background
To set a transparent background you could use the RGBA tuple (0,0,0,0)
, where the last 0
represents an opacity of 0
.
import seaborn as snssns.set(rc={'axes.facecolor':'#0000FF', 'figure.facecolor':(0,0,0,0)})fig, ax = plt.subplots()
This gives us the following:
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
1
thumb_down
1
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!