seaborn:默认为despine地块

时间:2017-05-15 14:08:52

标签: python matplotlib plot seaborn

matplotlib.pyplot.figure()
....
seaborn.despine(offset=10)

seaborn的despine功能可以从图中偏离轴刺,看起来相当不错。需要在绘制图形的代码之后调用该函数。但是,我希望这是任何情节的默认,至少任何seaborn情节。如何配置?

或者,如何将其作为绘图背景的一部分?

1 个答案:

答案 0 :(得分:3)

Matplotlib在版本1.5中添加了rc params来控制脊柱可见性,因此您可以默认关闭顶部和右侧棘刺的可见性

import matplotlib.pyplot as plt
plt.rc("axes.spines", top=False, right=False)

但是,matplotlib不会通过rc参数显示脊柱偏移,因此没有任何设置会自动将这些设置应用于每个绘图。