0
在jupyter筆記本電腦,我可以運行在Jupyter中,我怎樣才能默認使用matplotlib ggplot風格?
plt.style.use('ggplot')
並允許我使用ggplot風格地塊。我怎麼能把這個默認值放在某個配置文件中呢?
在jupyter筆記本電腦,我可以運行在Jupyter中,我怎樣才能默認使用matplotlib ggplot風格?
plt.style.use('ggplot')
並允許我使用ggplot風格地塊。我怎麼能把這個默認值放在某個配置文件中呢?
單向將使用IPython的啓動文件爲所有IPython會話運行任意腳本。 要使用此功能,您需要將任何file.py
放入<user-home-dir>/.ipython/profile_default/startup
文件夾中。 此文件可以有這樣的代碼,這將在執行時IPython的開始:
import matplotlib.pyplot as plt
plt.style.use('ggplot')
另一種方法是與ggplot
設置,您可以用得到修改matplotlibrc
:
plt.style.library['ggplot']
將輸出:
RcParams({u'axes.axisbelow': True,
u'axes.edgecolor': u'white',
u'axes.facecolor': u'#E5E5E5',
u'axes.grid': True,
u'axes.labelcolor': u'#555555',
u'axes.labelsize': u'large',
u'axes.linewidth': 1.0,
u'axes.prop_cycle': cycler(u'color', [u'#E24A33', u'#348ABD', u'#988ED5', u'#777777', u'#FBC15E', u'#8EBA42', u'#FFB5B8']),
u'axes.titlesize': u'x-large',
u'figure.edgecolor': u'0.50',
u'figure.facecolor': u'white',
u'font.size': 10.0,
u'grid.color': u'white',
u'grid.linestyle': u'-',
u'patch.antialiased': True,
u'patch.edgecolor': u'#EEEEEE',
u'patch.facecolor': u'#348ABD',
u'patch.linewidth': 0.5,
u'xtick.color': u'#555555',
u'xtick.direction': u'out',
u'ytick.color': u'#555555',
u'ytick.direction': u'out'})
在末尾粘貼matplotlibrc
中的那些行(key : value
部分)將使ggplot
樣式默認生效。