标签: matplotlib
在这个例子中
from matplotlib import pyplot import numpy as np pyplot.pcolormesh(np.ones((212, 212))) pyplot.show()
结果在矩阵周围有一个丑陋的白色区域,因为轴对齐到250.是否可以删除此功能?
答案 0 :(得分:3)
pyplot.gca().axis('tight')
在调用pyplot.show()之前。