以下问题说明如何更改图例的背景颜色: matplotlib legend background color。但是,如果我使用seaborn,这不起作用。有没有办法做到这一点?
import matplotlib.pyplot as plt
import numpy as np
a = np.random.rand(10,1)
plt.plot(a, label='label')
legend = plt.legend()
frame = legend.get_frame()
frame.set_facecolor('green')
plt.show()
import seaborn as sns
plt.plot(a, label='label')
legend = plt.legend()
frame = legend.get_frame()
frame.set_facecolor('green')
plt.show()
答案 0 :(得分:38)
seaborn默认关闭图例框架,如果您想自定义框架的外观,我认为您在调用frameon=True
时需要添加plt.legend
。
答案 1 :(得分:9)
set_style()
方法可以采用样式参数(例如'white'
,'whitegrid'
,'darkgrid'
等)和参数的dict来覆盖默认美学,包括是否是否有图例框架。
如果你想要改变其他一些小样式的东西,我经常这样做,你可以一次性设置它们。
import seaborn
seaborn.set_style('darkgrid', {'legend.frameon':True})
根据the docs,您可以使用seaborn
rc
的当前seaborn.axes_style()
设置
{'axes.axisbelow': True,
'axes.edgecolor': '.8',
'axes.facecolor': 'white',
'axes.grid': True,
'axes.labelcolor': '.15',
'axes.linewidth': 1.0,
'figure.facecolor': 'white',
'font.family': [u'sans-serif'],
'font.sans-serif': [u'Arial',
u'DejaVu Sans',
u'Liberation Sans',
u'Bitstream Vera Sans',
u'sans-serif'],
'grid.color': '.8',
'grid.linestyle': u'-',
'image.cmap': u'rocket',
'legend.frameon': False,
'legend.numpoints': 1,
'legend.scatterpoints': 1,
'lines.solid_capstyle': u'round',
'text.color': '.15',
'xtick.color': '.15',
'xtick.direction': u'out',
'xtick.major.size': 0.0,
'xtick.minor.size': 0.0,
'ytick.color': '.15',
'ytick.direction': u'out',
'ytick.major.size': 0.0,
'ytick.minor.size': 0.0}