如何将rcParam设置保存到文件以在其他脚本中使用

时间:2019-07-12 15:19:59

标签: python python-3.x matplotlib

我有不同的python脚本用于生成不同的图。我已经定义了一个用于更改rcParams的函数。如下所示。

现在此功能在文件中定义。我想在其他python脚本中使用rcparam的此保存文件。

所以我应该如何保存该rcparam文件到扩展名中,以及如何将此自定义rcParam调用到其他python脚本中。

def customizer():
    figure = {
        'figsize'   : 6.4, 4.8   ## figure size in inches
        'dpi'       : 100        ## figure dots per inch
    }
    axes = {
        'titlesize' : 'large'    ## fontsize of the axes title
        }

    ticks = {
        'labelsize' : 12         ## fontsize of the tick labels
    }

    font = {'family' : 'sans-serif',
            #'weight' : 'bold',
            'size'   : 12}

    plt.rc('font', **font)        # controls default text sizes
    plt.rc('axes', **axes)        # fontsize of the axes title
    plt.rc('xtick', **ticks)      # fontsize of the tick labels
    plt.rc('ytick', **ticks)      # fontsize of the tick labels

0 个答案:

没有答案