从轴对齐中删除白色边框

时间:2015-04-22 21:52:30

标签: matplotlib

在这个例子中

from matplotlib import pyplot
import numpy as np
pyplot.pcolormesh(np.ones((212, 212)))
pyplot.show()

enter image description here

结果在矩阵周围有一个丑陋的白色区域,因为轴对齐到250.是否可以删除此功能?

1 个答案:

答案 0 :(得分:3)

pyplot.gca().axis('tight')

在调用pyplot.show()之前。