文本和条形图大小调整 barwidth 与 matplotlib - python
我正在使用 matplotlib-0.91 创建条形图(第一次),但 y 轴标签被切断。 如果我将图形的宽度增加得足够多,它们最终会完全显示出来,但输出的尺寸不正确。
有办法处理这个吗?
I'm creating a bar chart with matplotlib-0.91 (for the first time) but the y axis labels are being cut off. If I increase the width of the figure enough they eventually show up completely but then the output is not the correct size.
Any way to deal with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想我遇到了类似的问题。
看看这是否有助于调整标签的字体大小:
对于条形宽度,如果您使用 pyplot.bar 看起来您可以使用宽度属性。
I think I ran into a similar problem.
See if this helps adjusting the label's font size:
For the bar width, if your using pyplot.bar it looks like you can play with the width attribute.
看看
subplots_adjust
,或者只使用轴
([左、下、宽、高])
。Take a look at
subplots_adjust
, or just useaxes
([left,bottom,width,height])
.