matplotlib中使用jupyter生成的figsize图的实际大小是多少?

时间:2018-08-17 11:57:47

标签: python matplotlib

我是matplotlib的新手,我正在研究这2个文档。 https://matplotlib.org/api/_as_gen/matplotlib.pyplot.figure.html https://matplotlib.org/api/_as_gen/matplotlib.figure.Figure.html

我编写了以下几行代码,以期直观了解人物。

fig1, ax = plt.subplots(figsize=(3,3),facecolor='black')
print(fig1.get_size_inches()*fig1.dpi)
fig2, axs = plt.subplots(1,2,figsize=(6,3),facecolor='black')
print(fig2.get_size_inches()*fig2.dpi)

输出使我感到困惑。整个区域是一个黑色的数字?我保存的不是216 x 216像素的图像。

输出 enter image description here

fig2的宽度应该是fig1的两倍,但图像不是。 有什么主意吗?

0 个答案:

没有答案