在Jupyter笔记本中缩放Matplotlib Plots的绘图大小

时间:2017-06-23 14:52:11

标签: python matplotlib jupyter-notebook

是否有可能在jupyter笔记本中缩放matplotlib图的绘图大小?您可以通过更改figure.figsize的默认值来增加绘图大小,但这不会影响fontsize,linewidth,markersize等参数。我需要的是一个绘图,其中所有参数都相应缩放。

P.S。:要在jupyter笔记本中显示情节,我使用%matplotlib inline,请参阅下面的截图。

Image

修改

为了完整起见,这里有一个完全符合我需要的代码片段:

def scale_plot_size(factor=1.5):
    import matplotlib as mpl
    default_dpi = mpl.rcParamsDefault['figure.dpi']
    mpl.rcParams['figure.dpi'] = default_dpi*factor

1 个答案:

答案 0 :(得分:10)

您不想更改数字大小。您想要更改dpi(每英寸点数) 另请参阅Relationship between dpi and figure size

import matplotlib.pyplot as plt
%matplotlib inline

def plot(dpi):
    fig, ax=plt.subplots(dpi=dpi)
    ax.plot([2,4,1,5], label="Label")
    ax.legend()

for i in range(1,4):
    plot(i*72)

enter image description here