gpt4 book ai didi

python - 关于从 matplotlib 生成的图像大小

转载 作者:太空宇宙 更新时间:2023-11-04 11:02:35 25 4
gpt4 key购买 nike

我使用 matplotlib 生成了直方图

import numpy as np
import pylab as P


mu, sigma = 200, 25
x = mu + sigma*P.randn(10000)


P.figure()
bins = 10
n, bins, patches = P.hist(x, bins, normed=1, histtype='bar', rwidth=0.8)
P.show()

我想把图片变小,怎么办?

谢谢你的帮助

最佳答案

如果你只想为这个特定的图形设置它,那么将你的图形声明更改为:

P.figure(figsize=(i,j))

其中 i 是以英寸为单位的宽度,j 是以英寸为单位的高度。

关于python - 关于从 matplotlib 生成的图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4012047/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com