随着多个地块增加地块大小?

时间:2019-05-13 19:29:45

标签: python-3.x histogram

我正在尝试用数据绘制直方图。 在Jupyter笔记本上使用python

    viz = cdf[['GyrNative', 'GyMutant', 'Hbond_native', 'HMutant', 'RMSDNative','RMSDMutant', 'RMSFNative', 'RMSFMutant', 'SASANative', 'SASAMutant']]
    plt.figure(figsize = (15,10))
    viz.hist(grid=True, rwidth = 0.9, color ='red')
    plt.tight_layout(pad=0.4, w_pad=0.5, h_pad=0.1)
    plt.show()

生成的图非常小...我如何一次增加每个图的大小?

1 个答案:

答案 0 :(得分:0)

在评论之后,如果您只是想使整个事情变大,则应在此添加figsize并重新安排plt.调用:

plt.tight_layout(pad=0.9, w_pad=0.5, h_pad=0.1)
viz.hist(grid=True, rwidth = 0.9, color ='red', figsize=(15,10))
plt.show()

enter image description here