如何为Jupyter笔记本设置默认背景色matplotlib图?

时间:2018-09-21 18:46:33

标签: matplotlib jupyter-notebook

Here,提到了如何使用以下方法将绘图的背景色设置为薄荷绿色:

fig = plt.figure()
fig.patch.set_facecolor('xkcd:mint green')

enter image description here

我想知道如何将其设置为默认值。我可以使用以下命令为特定笔记本中的所有图形设置颜色:

plt.rcParams['figure.facecolor'] = 'white'

当我在Jupyter笔记本中运行此程序时,它可以工作。所有图像都没有透明的白色背景。但是,当我将其添加到我的matplotlibrc文件中时,没有任何反应:

figure.facecolor : green
patch.facecolor : blue

我确定rc文件已加载。启动笔记本时,我使用以下命令生成图形:

%pylab inline
plot(range(10))

我想念什么?为什么rc文件中的参数无效?

0 个答案:

没有答案