%matplotlib笔记本电脑不尊重Figure.facecolor

时间:2018-08-02 20:04:48

标签: matplotlib jupyter-notebook

我正在使用具有Jupyter主题的Jupiter笔记本(一个傻瓜)。但是,我仍然希望我的图形具有白色的面部颜色,而不适合主题。

这可以使用...

%matplotlib inline
import matplotlib.pyplot as plt
fig, ax = plt.subplots(facecolor='w')
ax.plot(np.arange(40), np.arange(40))

enter image description here

但是,当使用%matplotlib笔记本时,这不起作用...

%matplotlib notebook
import matplotlib.pyplot as plt
fig, ax = plt.subplots(facecolor='w')
ax.plot(np.arange(40), np.arange(40))

enter image description here

有人对此行为有想法吗?

0 个答案:

没有答案