作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下屏幕截图显示了我的 x 轴。
我添加了一些标签并将它们旋转 90 度,以便更好地阅读它们。但是,pyplot 会截断底部,因此我无法完全读取标签。
如何扩展底部边距以查看完整标签?
最佳答案
两种追溯方式:
fig, ax = plt.subplots()
# ...
fig.tight_layout()
fig.subplots_adjust(bottom=0.2) # or whatever
subplots_adjust
例如:
http://matplotlib.org/examples/pylab_examples/subplots_adjust.html
tight_layout
)
关于matplotlib - 如何在 Matplotlib 中扩展图形底部的边距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27878217/
我是一名优秀的程序员,十分优秀!