Matplotlib projection remove margin

耗尽温柔 提交于 2019-12-02 07:02:40

You can use subplots_adjust:

To remove all the whitespace from around the Axes object, use:

fig.subplots_adjust(left=0, right=1, bottom=0, top=1)

Setting the extent is changing the data limits, not the position/size of the Axes.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!