matplotlib的配置参数rcParams

配置文件的读入可以使用 rc_params 函数,它返回一个配置字典:

matplotlib.rc_params()
{‘agg.path.chunksize’: 0,
‘axes.axisbelow’: False,
‘axes.edgecolor’: ‘k’,
‘axes.facecolor’: ‘w’,
… …
在matplotlib模块载入的时候会调用rc_params,并把得到的配置字典保存到rcParams变量中:

matplotlib.rcParams
{‘agg.path.chunksize’: 0,
‘axes.axisbelow’: False,
… …
matplotlib将使用rcParams中的配置进行绘图。用户可以直接修改此字典中的配置,所做的改变会反映到此后所绘制的图中。例如下面的脚本所绘制的线将带有圆形的点标识符:

matplotlib.rcParams[“lines.marker”] = “o”
import pylab
pylab.plot([1,2,3])
pylab.show()
为了方便配置,可以使用rc函数,下面的例子同时配置点标识符、线宽和颜色:

matplotlib.rc(“lines”, marker=”x”, linewidth=2, color=”red”)
如果希望恢复到缺省的配置(matplotlib载入时从配置文件读入的配置)的话,可以调用 rcdefaults 函数。

matplotlib.rcdefaults()
如果手工修改了配置文件,希望重新从配置文件载入最新的配置的话,可以调用:

matplotlib.rcParams.update( matplotlib.rc_params() )

参考链接

你可能感兴趣的:(python)