我的个人博客:zhang0peter的个人博客
matplotlib绘图时是默认的大小,有时候默认的大小会感觉图片里的内容都被压缩了,解决方法如下。
先是原始代码:
from matplotlib import pyplot as plt
plt.figure(figsize=(1,1))
x = [1,2,3]
plt.plot(x, x)
plt.show()
关键的代码是plt.figure(figsize=(1,1))
,生成的图片如下
修改代码,放大图片:
from matplotlib import pyplot as plt
plt.figure(figsize=(10,10))
x = [1,2,3]
plt.plot(x, x)
plt.show()
如果想要指定像素,可以这么做:
from matplotlib import pyplot as plt
plt.figure(dpi=80)
x = [1,2,3]
plt.plot(x, x)
plt.show()
更多参考资料:python - How do you change the size of figures drawn with matplotlib? - Stack Overflow