如何在python中使子图更大?

时间:2018-06-27 16:29:30

标签: python matplotlib plot

我试图使子图更大更清晰。在Box-Muller变换之前和之后,我试图为正态概率分布绘制不同的值。

我正在使用以下代码:

i=0
j=1
while (i < len(n)):  
    # Gleichmäßig verteilte Werte zwischen 0 und 1
    u1 = random.rand(n[i])
    u2 = random.rand(n[i])

    # Transformation ausführen
    z1,z2 = gaussian(u1,u2)



    plt.subplot(12,2,i+j)
    hist(u1)
    j += 1
    plt.subplot(12,2,i+j)
    hist(u2)
    j += 1
    plt.subplot(12,2,i+j)
    hist(z1)
    j += 1
    plt.subplot(12,2,i+j)
    hist(z2)
    i += 1

fig = plt.gcf()   
fig.set_size_inches(30, 13)
#fig.tight_layout()
plt.suptitle('test', fontsize=20, y=1.05)
plt.show()

附上我正在获得的地块。subplots

1 个答案:

答案 0 :(得分:0)

使用fig = plt.figure(figsize =(x,y))更改图形大小